@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
397 lines (396 loc) • 12 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
* This resource can manage a cEdge PIM 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/cedgePimFeatureTemplate:CedgePimFeatureTemplate example "f6b2c44c-693c-4763-b010-895aa3d236bd"
* ```
*/
export declare class CedgePimFeatureTemplate extends pulumi.CustomResource {
/**
* Get an existing CedgePimFeatureTemplate 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?: CedgePimFeatureTemplateState, opts?: pulumi.CustomResourceOptions): CedgePimFeatureTemplate;
/**
* Returns true if the given object is an instance of CedgePimFeatureTemplate. 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 CedgePimFeatureTemplate;
/**
* Enable or disable auto-RP - Default value: `false`
*/
readonly autoRp: pulumi.Output<boolean | undefined>;
/**
* Variable name
*/
readonly autoRpVariable: pulumi.Output<string | undefined>;
/**
* Set Autonomic-Networking virtual interface
*/
readonly bsrCandidate: pulumi.Output<string | undefined>;
/**
* Variable name
*/
readonly bsrCandidateVariable: pulumi.Output<string | undefined>;
/**
* Turn SSM On / Off - Default value: `false`
*/
readonly default: pulumi.Output<boolean | undefined>;
/**
* Variable name
*/
readonly defaultVariable: 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[]>;
/**
* Hash Mask length for RP selection
*/
readonly hashMaskLength: pulumi.Output<string | undefined>;
/**
* Variable name
*/
readonly hashMaskLengthVariable: pulumi.Output<string | undefined>;
/**
* Set RP Discovery Interface Name
*/
readonly interfaceName: pulumi.Output<string | undefined>;
/**
* Variable name
*/
readonly interfaceNameVariable: pulumi.Output<string | undefined>;
/**
* Set PIM interface parameters
*/
readonly interfaces: pulumi.Output<outputs.CedgePimFeatureTemplateInterface[] | undefined>;
/**
* The name of the feature template
*/
readonly name: pulumi.Output<string>;
/**
* Set RP candidate priority - Range: `0`-`255`
*/
readonly priority: pulumi.Output<number | undefined>;
/**
* Variable name
*/
readonly priorityVariable: pulumi.Output<string | undefined>;
/**
* Set Access List for PIM SSM
*/
readonly range: pulumi.Output<string | undefined>;
/**
* Variable name
*/
readonly rangeVariable: pulumi.Output<string | undefined>;
/**
* Set Static RP Address(es)
*/
readonly rpAddresses: pulumi.Output<outputs.CedgePimFeatureTemplateRpAddress[] | undefined>;
/**
* Enable or disable RP Announce
*/
readonly rpAnnounceFields: pulumi.Output<outputs.CedgePimFeatureTemplateRpAnnounceField[] | undefined>;
/**
* Set BSR RP candidate filter
*/
readonly rpCandidateAccessList: pulumi.Output<string | undefined>;
/**
* Variable name
*/
readonly rpCandidateAccessListVariable: pulumi.Output<string | undefined>;
/**
* Set RP Discovery Scope
*/
readonly rpCandidates: pulumi.Output<outputs.CedgePimFeatureTemplateRpCandidate[] | undefined>;
/**
* Set RP Discovery Scope - Range: `1`-`255`
*/
readonly scope: pulumi.Output<number | undefined>;
/**
* Variable name
*/
readonly scopeVariable: pulumi.Output<string | undefined>;
/**
* Set when PIM router joins the SPT (kbps) - Choices: `0`, `infinity`
*/
readonly sptThreshold: pulumi.Output<string | undefined>;
/**
* Variable name
*/
readonly sptThresholdVariable: 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 CedgePimFeatureTemplate 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: CedgePimFeatureTemplateArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering CedgePimFeatureTemplate resources.
*/
export interface CedgePimFeatureTemplateState {
/**
* Enable or disable auto-RP - Default value: `false`
*/
autoRp?: pulumi.Input<boolean>;
/**
* Variable name
*/
autoRpVariable?: pulumi.Input<string>;
/**
* Set Autonomic-Networking virtual interface
*/
bsrCandidate?: pulumi.Input<string>;
/**
* Variable name
*/
bsrCandidateVariable?: pulumi.Input<string>;
/**
* Turn SSM On / Off - Default value: `false`
*/
default?: pulumi.Input<boolean>;
/**
* Variable name
*/
defaultVariable?: 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>[]>;
/**
* Hash Mask length for RP selection
*/
hashMaskLength?: pulumi.Input<string>;
/**
* Variable name
*/
hashMaskLengthVariable?: pulumi.Input<string>;
/**
* Set RP Discovery Interface Name
*/
interfaceName?: pulumi.Input<string>;
/**
* Variable name
*/
interfaceNameVariable?: pulumi.Input<string>;
/**
* Set PIM interface parameters
*/
interfaces?: pulumi.Input<pulumi.Input<inputs.CedgePimFeatureTemplateInterface>[]>;
/**
* The name of the feature template
*/
name?: pulumi.Input<string>;
/**
* Set RP candidate priority - Range: `0`-`255`
*/
priority?: pulumi.Input<number>;
/**
* Variable name
*/
priorityVariable?: pulumi.Input<string>;
/**
* Set Access List for PIM SSM
*/
range?: pulumi.Input<string>;
/**
* Variable name
*/
rangeVariable?: pulumi.Input<string>;
/**
* Set Static RP Address(es)
*/
rpAddresses?: pulumi.Input<pulumi.Input<inputs.CedgePimFeatureTemplateRpAddress>[]>;
/**
* Enable or disable RP Announce
*/
rpAnnounceFields?: pulumi.Input<pulumi.Input<inputs.CedgePimFeatureTemplateRpAnnounceField>[]>;
/**
* Set BSR RP candidate filter
*/
rpCandidateAccessList?: pulumi.Input<string>;
/**
* Variable name
*/
rpCandidateAccessListVariable?: pulumi.Input<string>;
/**
* Set RP Discovery Scope
*/
rpCandidates?: pulumi.Input<pulumi.Input<inputs.CedgePimFeatureTemplateRpCandidate>[]>;
/**
* Set RP Discovery Scope - Range: `1`-`255`
*/
scope?: pulumi.Input<number>;
/**
* Variable name
*/
scopeVariable?: pulumi.Input<string>;
/**
* Set when PIM router joins the SPT (kbps) - Choices: `0`, `infinity`
*/
sptThreshold?: pulumi.Input<string>;
/**
* Variable name
*/
sptThresholdVariable?: 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 CedgePimFeatureTemplate resource.
*/
export interface CedgePimFeatureTemplateArgs {
/**
* Enable or disable auto-RP - Default value: `false`
*/
autoRp?: pulumi.Input<boolean>;
/**
* Variable name
*/
autoRpVariable?: pulumi.Input<string>;
/**
* Set Autonomic-Networking virtual interface
*/
bsrCandidate?: pulumi.Input<string>;
/**
* Variable name
*/
bsrCandidateVariable?: pulumi.Input<string>;
/**
* Turn SSM On / Off - Default value: `false`
*/
default?: pulumi.Input<boolean>;
/**
* Variable name
*/
defaultVariable?: 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>[]>;
/**
* Hash Mask length for RP selection
*/
hashMaskLength?: pulumi.Input<string>;
/**
* Variable name
*/
hashMaskLengthVariable?: pulumi.Input<string>;
/**
* Set RP Discovery Interface Name
*/
interfaceName?: pulumi.Input<string>;
/**
* Variable name
*/
interfaceNameVariable?: pulumi.Input<string>;
/**
* Set PIM interface parameters
*/
interfaces?: pulumi.Input<pulumi.Input<inputs.CedgePimFeatureTemplateInterface>[]>;
/**
* The name of the feature template
*/
name?: pulumi.Input<string>;
/**
* Set RP candidate priority - Range: `0`-`255`
*/
priority?: pulumi.Input<number>;
/**
* Variable name
*/
priorityVariable?: pulumi.Input<string>;
/**
* Set Access List for PIM SSM
*/
range?: pulumi.Input<string>;
/**
* Variable name
*/
rangeVariable?: pulumi.Input<string>;
/**
* Set Static RP Address(es)
*/
rpAddresses?: pulumi.Input<pulumi.Input<inputs.CedgePimFeatureTemplateRpAddress>[]>;
/**
* Enable or disable RP Announce
*/
rpAnnounceFields?: pulumi.Input<pulumi.Input<inputs.CedgePimFeatureTemplateRpAnnounceField>[]>;
/**
* Set BSR RP candidate filter
*/
rpCandidateAccessList?: pulumi.Input<string>;
/**
* Variable name
*/
rpCandidateAccessListVariable?: pulumi.Input<string>;
/**
* Set RP Discovery Scope
*/
rpCandidates?: pulumi.Input<pulumi.Input<inputs.CedgePimFeatureTemplateRpCandidate>[]>;
/**
* Set RP Discovery Scope - Range: `1`-`255`
*/
scope?: pulumi.Input<number>;
/**
* Variable name
*/
scopeVariable?: pulumi.Input<string>;
/**
* Set when PIM router joins the SPT (kbps) - Choices: `0`, `infinity`
*/
sptThreshold?: pulumi.Input<string>;
/**
* Variable name
*/
sptThresholdVariable?: pulumi.Input<string>;
}