@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
144 lines (143 loc) • 5.75 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* ## Example Usage
*
* ## Import
*
* ```sh
* $ pulumi import meraki:networks/switchRoutingOspf:SwitchRoutingOspf example "network_id"
* ```
*/
export declare class SwitchRoutingOspf extends pulumi.CustomResource {
/**
* Get an existing SwitchRoutingOspf 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?: SwitchRoutingOspfState, opts?: pulumi.CustomResourceOptions): SwitchRoutingOspf;
/**
* Returns true if the given object is an instance of SwitchRoutingOspf. 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 SwitchRoutingOspf;
/**
* OSPF areas
*/
readonly areas: pulumi.Output<outputs.networks.SwitchRoutingOspfArea[]>;
/**
* Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
*/
readonly deadTimerInSeconds: pulumi.Output<number>;
/**
* Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
*/
readonly enabled: pulumi.Output<boolean>;
/**
* Time interval in seconds at which hello packet will be sent to OSPF neighbors to maintain connectivity. Value must be between 1 and 255. Default is 10 seconds.
*/
readonly helloTimerInSeconds: pulumi.Output<number>;
/**
* Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
*/
readonly md5AuthenticationEnabled: pulumi.Output<boolean>;
/**
* MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
*/
readonly md5AuthenticationKey: pulumi.Output<outputs.networks.SwitchRoutingOspfMd5AuthenticationKey>;
/**
* networkId path parameter. Network ID
*/
readonly networkId: pulumi.Output<string>;
/**
* OSPF v3 configuration
*/
readonly v3: pulumi.Output<outputs.networks.SwitchRoutingOspfV3>;
/**
* Create a SwitchRoutingOspf 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: SwitchRoutingOspfArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering SwitchRoutingOspf resources.
*/
export interface SwitchRoutingOspfState {
/**
* OSPF areas
*/
areas?: pulumi.Input<pulumi.Input<inputs.networks.SwitchRoutingOspfArea>[]>;
/**
* Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
*/
deadTimerInSeconds?: pulumi.Input<number>;
/**
* Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
*/
enabled?: pulumi.Input<boolean>;
/**
* Time interval in seconds at which hello packet will be sent to OSPF neighbors to maintain connectivity. Value must be between 1 and 255. Default is 10 seconds.
*/
helloTimerInSeconds?: pulumi.Input<number>;
/**
* Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
*/
md5AuthenticationEnabled?: pulumi.Input<boolean>;
/**
* MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
*/
md5AuthenticationKey?: pulumi.Input<inputs.networks.SwitchRoutingOspfMd5AuthenticationKey>;
/**
* networkId path parameter. Network ID
*/
networkId?: pulumi.Input<string>;
/**
* OSPF v3 configuration
*/
v3?: pulumi.Input<inputs.networks.SwitchRoutingOspfV3>;
}
/**
* The set of arguments for constructing a SwitchRoutingOspf resource.
*/
export interface SwitchRoutingOspfArgs {
/**
* OSPF areas
*/
areas?: pulumi.Input<pulumi.Input<inputs.networks.SwitchRoutingOspfArea>[]>;
/**
* Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
*/
deadTimerInSeconds?: pulumi.Input<number>;
/**
* Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
*/
enabled?: pulumi.Input<boolean>;
/**
* Time interval in seconds at which hello packet will be sent to OSPF neighbors to maintain connectivity. Value must be between 1 and 255. Default is 10 seconds.
*/
helloTimerInSeconds?: pulumi.Input<number>;
/**
* Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
*/
md5AuthenticationEnabled?: pulumi.Input<boolean>;
/**
* MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
*/
md5AuthenticationKey?: pulumi.Input<inputs.networks.SwitchRoutingOspfMd5AuthenticationKey>;
/**
* networkId path parameter. Network ID
*/
networkId: pulumi.Input<string>;
/**
* OSPF v3 configuration
*/
v3?: pulumi.Input<inputs.networks.SwitchRoutingOspfV3>;
}