@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
151 lines (150 loc) • 3.91 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* This data source can read the Service Routing EIGRP Feature.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getServiceRoutingEigrpFeature({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
* });
* ```
*/
export declare function getServiceRoutingEigrpFeature(args: GetServiceRoutingEigrpFeatureArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceRoutingEigrpFeatureResult>;
/**
* A collection of arguments for invoking getServiceRoutingEigrpFeature.
*/
export interface GetServiceRoutingEigrpFeatureArgs {
/**
* Feature Profile ID
*/
featureProfileId: string;
/**
* The id of the Feature
*/
id: string;
}
/**
* A collection of values returned by getServiceRoutingEigrpFeature.
*/
export interface GetServiceRoutingEigrpFeatureResult {
/**
* Set EIGRP router authentication type
*/
readonly authenticationType: string;
/**
* Variable name
*/
readonly authenticationTypeVariable: string;
/**
* Set autonomous system ID \n\n
*/
readonly autonomousSystemId: number;
/**
* Variable name
*/
readonly autonomousSystemIdVariable: string;
/**
* The description of the Feature
*/
readonly description: string;
/**
* Feature Profile ID
*/
readonly featureProfileId: string;
/**
* Selective route download
*/
readonly filter: boolean;
/**
* Variable name
*/
readonly filterVariable: string;
/**
* Set EIGRP hello interval
*/
readonly helloInterval: number;
/**
* Variable name
*/
readonly helloIntervalVariable: string;
/**
* Set hmac-sha-256 authentication key
*/
readonly hmacAuthenticationKey: string;
/**
* Variable name
*/
readonly hmacAuthenticationKeyVariable: string;
/**
* Set EIGRP hold time
*/
readonly holdTime: number;
/**
* Variable name
*/
readonly holdTimeVariable: string;
/**
* The id of the Feature
*/
readonly id: string;
/**
* Configure IPv4 Static Routes
*/
readonly interfaces: outputs.GetServiceRoutingEigrpFeatureInterface[];
/**
* Set keychain details
*/
readonly md5Keys: outputs.GetServiceRoutingEigrpFeatureMd5Key[];
/**
* The name of the Feature
*/
readonly name: string;
/**
* Configure the networks for EIGRP to advertise
*/
readonly networks: outputs.GetServiceRoutingEigrpFeatureNetwork[];
/**
* Redistribute routes into EIGRP
*/
readonly redistributes: outputs.GetServiceRoutingEigrpFeatureRedistribute[];
readonly routePolicyId: string;
/**
* The version of the Feature
*/
readonly version: number;
}
/**
* This data source can read the Service Routing EIGRP Feature.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getServiceRoutingEigrpFeature({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
* });
* ```
*/
export declare function getServiceRoutingEigrpFeatureOutput(args: GetServiceRoutingEigrpFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceRoutingEigrpFeatureResult>;
/**
* A collection of arguments for invoking getServiceRoutingEigrpFeature.
*/
export interface GetServiceRoutingEigrpFeatureOutputArgs {
/**
* Feature Profile ID
*/
featureProfileId: pulumi.Input<string>;
/**
* The id of the Feature
*/
id: pulumi.Input<string>;
}