@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
67 lines (66 loc) • 1.91 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the Embedded Security Feature Profile .
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getEmbeddedSecurityFeatureProfile({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getEmbeddedSecurityFeatureProfile(args: GetEmbeddedSecurityFeatureProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetEmbeddedSecurityFeatureProfileResult>;
/**
* A collection of arguments for invoking getEmbeddedSecurityFeatureProfile.
*/
export interface GetEmbeddedSecurityFeatureProfileArgs {
/**
* The id of the object
*/
id: string;
}
/**
* A collection of values returned by getEmbeddedSecurityFeatureProfile.
*/
export interface GetEmbeddedSecurityFeatureProfileResult {
/**
* Description
*/
readonly description: string;
/**
* The id of the object
*/
readonly id: string;
/**
* The name of the embedded security feature profile
*/
readonly name: string;
}
/**
* This data source can read the Embedded Security Feature Profile .
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getEmbeddedSecurityFeatureProfile({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getEmbeddedSecurityFeatureProfileOutput(args: GetEmbeddedSecurityFeatureProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEmbeddedSecurityFeatureProfileResult>;
/**
* A collection of arguments for invoking getEmbeddedSecurityFeatureProfile.
*/
export interface GetEmbeddedSecurityFeatureProfileOutputArgs {
/**
* The id of the object
*/
id: pulumi.Input<string>;
}