@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.62 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* This data source can read the Security App Hosting feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getSecurityAppHostingFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getSecurityAppHostingFeatureTemplate(args?: GetSecurityAppHostingFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetSecurityAppHostingFeatureTemplateResult>;
/**
* A collection of arguments for invoking getSecurityAppHostingFeatureTemplate.
*/
export interface GetSecurityAppHostingFeatureTemplateArgs {
/**
* The id of the feature template
*/
id?: string;
/**
* The name of the feature template
*/
name?: string;
}
/**
* A collection of values returned by getSecurityAppHostingFeatureTemplate.
*/
export interface GetSecurityAppHostingFeatureTemplateResult {
/**
* The description of the feature template
*/
readonly description: string;
/**
* List of supported device types
*/
readonly deviceTypes: string[];
/**
* The id of the feature template
*/
readonly id: string;
/**
* The name of the feature template
*/
readonly name: string;
/**
* The template type
*/
readonly templateType: string;
/**
* The version of the feature template
*/
readonly version: number;
/**
* Virtual application Instance
*/
readonly virtualApplications: outputs.GetSecurityAppHostingFeatureTemplateVirtualApplication[];
}
/**
* This data source can read the Security App Hosting feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getSecurityAppHostingFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getSecurityAppHostingFeatureTemplateOutput(args?: GetSecurityAppHostingFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSecurityAppHostingFeatureTemplateResult>;
/**
* A collection of arguments for invoking getSecurityAppHostingFeatureTemplate.
*/
export interface GetSecurityAppHostingFeatureTemplateOutputArgs {
/**
* The id of the feature template
*/
id?: pulumi.Input<string>;
/**
* The name of the feature template
*/
name?: pulumi.Input<string>;
}