UNPKG

@pulumi/sdwan

Version:

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

313 lines (312 loc) 10.1 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage a eigrp feature template. * - Minimum SD-WAN Manager version: `15.0.0` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import sdwan:index/eigrpFeatureTemplate:EigrpFeatureTemplate example "f6b2c44c-693c-4763-b010-895aa3d236bd" * ``` */ export declare class EigrpFeatureTemplate extends pulumi.CustomResource { /** * Get an existing EigrpFeatureTemplate resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: EigrpFeatureTemplateState, opts?: pulumi.CustomResourceOptions): EigrpFeatureTemplate; /** * Returns true if the given object is an instance of EigrpFeatureTemplate. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is EigrpFeatureTemplate; /** * Set EIGRP address family */ readonly addressFamilies: pulumi.Output<outputs.EigrpFeatureTemplateAddressFamily[] | undefined>; /** * Set autonomous system ID <1..65535> - Range: `1`-`65535` */ readonly asNumber: pulumi.Output<number | undefined>; /** * Variable name */ readonly asNumberVariable: pulumi.Output<string | undefined>; /** * Set EIGRP router authentication type - Choices: `md5`, `hmac-sha-256` */ readonly authenticationType: pulumi.Output<string | undefined>; /** * Variable name */ readonly authenticationTypeVariable: pulumi.Output<string | undefined>; /** * The description of the feature template */ readonly description: pulumi.Output<string>; /** * List of supported device types - Choices: `vedge-C8000V`, `vedge-C8300-1N1S-4T2X`, `vedge-C8300-1N1S-6T`, * `vedge-C8300-2N2S-6T`, `vedge-C8300-2N2S-4T2X`, `vedge-C8500-12X4QC`, `vedge-C8500-12X`, `vedge-C8500-20X6C`, * `vedge-C8500L-8S4X`, `vedge-C8200-1N-4T`, `vedge-C8200L-1N-4T` */ readonly deviceTypes: pulumi.Output<string[]>; /** * Selective route download - Default value: `false` */ readonly filter: pulumi.Output<boolean | undefined>; /** * Variable name */ readonly filterVariable: pulumi.Output<string | undefined>; /** * Set EIGRP hello interval - Range: `0`-`65535` - Default value: `5` */ readonly helloInterval: pulumi.Output<number | undefined>; /** * Variable name */ readonly helloIntervalVariable: pulumi.Output<string | undefined>; /** * Set hmac-sha-256 authentication key */ readonly hmacAuthenticationKey: pulumi.Output<string | undefined>; /** * Variable name */ readonly hmacAuthenticationKeyVariable: pulumi.Output<string | undefined>; /** * Set EIGRP hold time - Range: `0`-`65535` - Default value: `15` */ readonly holdTime: pulumi.Output<number | undefined>; /** * Variable name */ readonly holdTimeVariable: pulumi.Output<string | undefined>; /** * Configure IPv4 Static Routes */ readonly interfaces: pulumi.Output<outputs.EigrpFeatureTemplateInterface[] | undefined>; /** * Set keychain name */ readonly keys: pulumi.Output<outputs.EigrpFeatureTemplateKey[] | undefined>; /** * The name of the feature template */ readonly name: pulumi.Output<string>; /** * Configure policy to apply to prefixes received from EIGRP neighbor */ readonly routePolicyName: pulumi.Output<string | undefined>; /** * Variable name */ readonly routePolicyNameVariable: pulumi.Output<string | undefined>; /** * The template type */ readonly templateType: pulumi.Output<string>; /** * The version of the feature template */ readonly version: pulumi.Output<number>; /** * Create a EigrpFeatureTemplate resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: EigrpFeatureTemplateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EigrpFeatureTemplate resources. */ export interface EigrpFeatureTemplateState { /** * Set EIGRP address family */ addressFamilies?: pulumi.Input<pulumi.Input<inputs.EigrpFeatureTemplateAddressFamily>[]>; /** * Set autonomous system ID <1..65535> - Range: `1`-`65535` */ asNumber?: pulumi.Input<number>; /** * Variable name */ asNumberVariable?: pulumi.Input<string>; /** * Set EIGRP router authentication type - Choices: `md5`, `hmac-sha-256` */ authenticationType?: pulumi.Input<string>; /** * Variable name */ authenticationTypeVariable?: pulumi.Input<string>; /** * The description of the feature template */ description?: pulumi.Input<string>; /** * List of supported device types - Choices: `vedge-C8000V`, `vedge-C8300-1N1S-4T2X`, `vedge-C8300-1N1S-6T`, * `vedge-C8300-2N2S-6T`, `vedge-C8300-2N2S-4T2X`, `vedge-C8500-12X4QC`, `vedge-C8500-12X`, `vedge-C8500-20X6C`, * `vedge-C8500L-8S4X`, `vedge-C8200-1N-4T`, `vedge-C8200L-1N-4T` */ deviceTypes?: pulumi.Input<pulumi.Input<string>[]>; /** * Selective route download - Default value: `false` */ filter?: pulumi.Input<boolean>; /** * Variable name */ filterVariable?: pulumi.Input<string>; /** * Set EIGRP hello interval - Range: `0`-`65535` - Default value: `5` */ helloInterval?: pulumi.Input<number>; /** * Variable name */ helloIntervalVariable?: pulumi.Input<string>; /** * Set hmac-sha-256 authentication key */ hmacAuthenticationKey?: pulumi.Input<string>; /** * Variable name */ hmacAuthenticationKeyVariable?: pulumi.Input<string>; /** * Set EIGRP hold time - Range: `0`-`65535` - Default value: `15` */ holdTime?: pulumi.Input<number>; /** * Variable name */ holdTimeVariable?: pulumi.Input<string>; /** * Configure IPv4 Static Routes */ interfaces?: pulumi.Input<pulumi.Input<inputs.EigrpFeatureTemplateInterface>[]>; /** * Set keychain name */ keys?: pulumi.Input<pulumi.Input<inputs.EigrpFeatureTemplateKey>[]>; /** * The name of the feature template */ name?: pulumi.Input<string>; /** * Configure policy to apply to prefixes received from EIGRP neighbor */ routePolicyName?: pulumi.Input<string>; /** * Variable name */ routePolicyNameVariable?: pulumi.Input<string>; /** * The template type */ templateType?: pulumi.Input<string>; /** * The version of the feature template */ version?: pulumi.Input<number>; } /** * The set of arguments for constructing a EigrpFeatureTemplate resource. */ export interface EigrpFeatureTemplateArgs { /** * Set EIGRP address family */ addressFamilies?: pulumi.Input<pulumi.Input<inputs.EigrpFeatureTemplateAddressFamily>[]>; /** * Set autonomous system ID <1..65535> - Range: `1`-`65535` */ asNumber?: pulumi.Input<number>; /** * Variable name */ asNumberVariable?: pulumi.Input<string>; /** * Set EIGRP router authentication type - Choices: `md5`, `hmac-sha-256` */ authenticationType?: pulumi.Input<string>; /** * Variable name */ authenticationTypeVariable?: pulumi.Input<string>; /** * The description of the feature template */ description: pulumi.Input<string>; /** * List of supported device types - Choices: `vedge-C8000V`, `vedge-C8300-1N1S-4T2X`, `vedge-C8300-1N1S-6T`, * `vedge-C8300-2N2S-6T`, `vedge-C8300-2N2S-4T2X`, `vedge-C8500-12X4QC`, `vedge-C8500-12X`, `vedge-C8500-20X6C`, * `vedge-C8500L-8S4X`, `vedge-C8200-1N-4T`, `vedge-C8200L-1N-4T` */ deviceTypes: pulumi.Input<pulumi.Input<string>[]>; /** * Selective route download - Default value: `false` */ filter?: pulumi.Input<boolean>; /** * Variable name */ filterVariable?: pulumi.Input<string>; /** * Set EIGRP hello interval - Range: `0`-`65535` - Default value: `5` */ helloInterval?: pulumi.Input<number>; /** * Variable name */ helloIntervalVariable?: pulumi.Input<string>; /** * Set hmac-sha-256 authentication key */ hmacAuthenticationKey?: pulumi.Input<string>; /** * Variable name */ hmacAuthenticationKeyVariable?: pulumi.Input<string>; /** * Set EIGRP hold time - Range: `0`-`65535` - Default value: `15` */ holdTime?: pulumi.Input<number>; /** * Variable name */ holdTimeVariable?: pulumi.Input<string>; /** * Configure IPv4 Static Routes */ interfaces?: pulumi.Input<pulumi.Input<inputs.EigrpFeatureTemplateInterface>[]>; /** * Set keychain name */ keys?: pulumi.Input<pulumi.Input<inputs.EigrpFeatureTemplateKey>[]>; /** * The name of the feature template */ name?: pulumi.Input<string>; /** * Configure policy to apply to prefixes received from EIGRP neighbor */ routePolicyName?: pulumi.Input<string>; /** * Variable name */ routePolicyNameVariable?: pulumi.Input<string>; }