meraki.networks.SwitchRoutingOspf
Explore with Pulumi AI
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.networks.SwitchRoutingOspf;
import com.pulumi.meraki.networks.SwitchRoutingOspfArgs;
import com.pulumi.meraki.networks.inputs.SwitchRoutingOspfAreaArgs;
import com.pulumi.meraki.networks.inputs.SwitchRoutingOspfMd5AuthenticationKeyArgs;
import com.pulumi.meraki.networks.inputs.SwitchRoutingOspfV3Args;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new SwitchRoutingOspf("example", SwitchRoutingOspfArgs.builder()
.areas(SwitchRoutingOspfAreaArgs.builder()
.area_id("1284392014819")
.area_name("Backbone")
.area_type("normal")
.build())
.deadTimerInSeconds(40)
.enabled(true)
.helloTimerInSeconds(10)
.md5AuthenticationEnabled(true)
.md5AuthenticationKey(SwitchRoutingOspfMd5AuthenticationKeyArgs.builder()
.id(1234)
.passphrase("abc1234")
.build())
.networkId("string")
.v3(SwitchRoutingOspfV3Args.builder()
.areas(SwitchRoutingOspfV3AreaArgs.builder()
.areaId("1284392014819")
.areaName("V3 Backbone")
.areaType("normal")
.build())
.dead_timer_in_seconds(40)
.enabled(true)
.hello_timer_in_seconds(10)
.build())
.build());
ctx.export("merakiNetworksSwitchRoutingOspfExample", example);
}
}
resources:
example:
type: meraki:networks:SwitchRoutingOspf
properties:
areas:
- area_id: '1284392014819'
area_name: Backbone
area_type: normal
deadTimerInSeconds: 40
enabled: true
helloTimerInSeconds: 10
md5AuthenticationEnabled: true
md5AuthenticationKey:
id: 1234
passphrase: abc1234
networkId: string
v3:
areas:
- areaId: '1284392014819'
areaName: V3 Backbone
areaType: normal
dead_timer_in_seconds: 40
enabled: true
hello_timer_in_seconds: 10
outputs:
merakiNetworksSwitchRoutingOspfExample: ${example}
Create SwitchRoutingOspf Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SwitchRoutingOspf(name: string, args: SwitchRoutingOspfArgs, opts?: CustomResourceOptions);
@overload
def SwitchRoutingOspf(resource_name: str,
args: SwitchRoutingOspfArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SwitchRoutingOspf(resource_name: str,
opts: Optional[ResourceOptions] = None,
network_id: Optional[str] = None,
areas: Optional[Sequence[SwitchRoutingOspfAreaArgs]] = None,
dead_timer_in_seconds: Optional[int] = None,
enabled: Optional[bool] = None,
hello_timer_in_seconds: Optional[int] = None,
md5_authentication_enabled: Optional[bool] = None,
md5_authentication_key: Optional[SwitchRoutingOspfMd5AuthenticationKeyArgs] = None,
v3: Optional[SwitchRoutingOspfV3Args] = None)
func NewSwitchRoutingOspf(ctx *Context, name string, args SwitchRoutingOspfArgs, opts ...ResourceOption) (*SwitchRoutingOspf, error)
public SwitchRoutingOspf(string name, SwitchRoutingOspfArgs args, CustomResourceOptions? opts = null)
public SwitchRoutingOspf(String name, SwitchRoutingOspfArgs args)
public SwitchRoutingOspf(String name, SwitchRoutingOspfArgs args, CustomResourceOptions options)
type: meraki:networks:SwitchRoutingOspf
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SwitchRoutingOspfArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SwitchRoutingOspfArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SwitchRoutingOspfArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SwitchRoutingOspfArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SwitchRoutingOspfArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var switchRoutingOspfResource = new Meraki.Networks.SwitchRoutingOspf("switchRoutingOspfResource", new()
{
NetworkId = "string",
Areas = new[]
{
new Meraki.Networks.Inputs.SwitchRoutingOspfAreaArgs
{
AreaId = "string",
AreaName = "string",
AreaType = "string",
},
},
DeadTimerInSeconds = 0,
Enabled = false,
HelloTimerInSeconds = 0,
Md5AuthenticationEnabled = false,
Md5AuthenticationKey = new Meraki.Networks.Inputs.SwitchRoutingOspfMd5AuthenticationKeyArgs
{
Id = 0,
Passphrase = "string",
},
V3 = new Meraki.Networks.Inputs.SwitchRoutingOspfV3Args
{
Areas = new[]
{
new Meraki.Networks.Inputs.SwitchRoutingOspfV3AreaArgs
{
AreaId = "string",
AreaName = "string",
AreaType = "string",
},
},
DeadTimerInSeconds = 0,
Enabled = false,
HelloTimerInSeconds = 0,
},
});
example, err := networks.NewSwitchRoutingOspf(ctx, "switchRoutingOspfResource", &networks.SwitchRoutingOspfArgs{
NetworkId: pulumi.String("string"),
Areas: networks.SwitchRoutingOspfAreaArray{
&networks.SwitchRoutingOspfAreaArgs{
AreaId: pulumi.String("string"),
AreaName: pulumi.String("string"),
AreaType: pulumi.String("string"),
},
},
DeadTimerInSeconds: pulumi.Int(0),
Enabled: pulumi.Bool(false),
HelloTimerInSeconds: pulumi.Int(0),
Md5AuthenticationEnabled: pulumi.Bool(false),
Md5AuthenticationKey: &networks.SwitchRoutingOspfMd5AuthenticationKeyArgs{
Id: pulumi.Int(0),
Passphrase: pulumi.String("string"),
},
V3: &networks.SwitchRoutingOspfV3Args{
Areas: networks.SwitchRoutingOspfV3AreaArray{
&networks.SwitchRoutingOspfV3AreaArgs{
AreaId: pulumi.String("string"),
AreaName: pulumi.String("string"),
AreaType: pulumi.String("string"),
},
},
DeadTimerInSeconds: pulumi.Int(0),
Enabled: pulumi.Bool(false),
HelloTimerInSeconds: pulumi.Int(0),
},
})
var switchRoutingOspfResource = new SwitchRoutingOspf("switchRoutingOspfResource", SwitchRoutingOspfArgs.builder()
.networkId("string")
.areas(SwitchRoutingOspfAreaArgs.builder()
.areaId("string")
.areaName("string")
.areaType("string")
.build())
.deadTimerInSeconds(0)
.enabled(false)
.helloTimerInSeconds(0)
.md5AuthenticationEnabled(false)
.md5AuthenticationKey(SwitchRoutingOspfMd5AuthenticationKeyArgs.builder()
.id(0)
.passphrase("string")
.build())
.v3(SwitchRoutingOspfV3Args.builder()
.areas(SwitchRoutingOspfV3AreaArgs.builder()
.areaId("string")
.areaName("string")
.areaType("string")
.build())
.deadTimerInSeconds(0)
.enabled(false)
.helloTimerInSeconds(0)
.build())
.build());
switch_routing_ospf_resource = meraki.networks.SwitchRoutingOspf("switchRoutingOspfResource",
network_id="string",
areas=[meraki.networks.SwitchRoutingOspfAreaArgs(
area_id="string",
area_name="string",
area_type="string",
)],
dead_timer_in_seconds=0,
enabled=False,
hello_timer_in_seconds=0,
md5_authentication_enabled=False,
md5_authentication_key=meraki.networks.SwitchRoutingOspfMd5AuthenticationKeyArgs(
id=0,
passphrase="string",
),
v3=meraki.networks.SwitchRoutingOspfV3Args(
areas=[meraki.networks.SwitchRoutingOspfV3AreaArgs(
area_id="string",
area_name="string",
area_type="string",
)],
dead_timer_in_seconds=0,
enabled=False,
hello_timer_in_seconds=0,
))
const switchRoutingOspfResource = new meraki.networks.SwitchRoutingOspf("switchRoutingOspfResource", {
networkId: "string",
areas: [{
areaId: "string",
areaName: "string",
areaType: "string",
}],
deadTimerInSeconds: 0,
enabled: false,
helloTimerInSeconds: 0,
md5AuthenticationEnabled: false,
md5AuthenticationKey: {
id: 0,
passphrase: "string",
},
v3: {
areas: [{
areaId: "string",
areaName: "string",
areaType: "string",
}],
deadTimerInSeconds: 0,
enabled: false,
helloTimerInSeconds: 0,
},
});
type: meraki:networks:SwitchRoutingOspf
properties:
areas:
- areaId: string
areaName: string
areaType: string
deadTimerInSeconds: 0
enabled: false
helloTimerInSeconds: 0
md5AuthenticationEnabled: false
md5AuthenticationKey:
id: 0
passphrase: string
networkId: string
v3:
areas:
- areaId: string
areaName: string
areaType: string
deadTimerInSeconds: 0
enabled: false
helloTimerInSeconds: 0
SwitchRoutingOspf Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SwitchRoutingOspf resource accepts the following input properties:
- Network
Id string - networkId path parameter. Network ID
- Areas
List<Switch
Routing Ospf Area> - OSPF areas
- Dead
Timer intIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- Enabled bool
- Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
- Hello
Timer intIn Seconds - 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.
- Md5Authentication
Enabled bool - Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
- Md5Authentication
Key SwitchRouting Ospf Md5Authentication Key - MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
- V3
Switch
Routing Ospf V3 - OSPF v3 configuration
- Network
Id string - networkId path parameter. Network ID
- Areas
[]Switch
Routing Ospf Area Args - OSPF areas
- Dead
Timer intIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- Enabled bool
- Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
- Hello
Timer intIn Seconds - 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.
- Md5Authentication
Enabled bool - Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
- Md5Authentication
Key SwitchRouting Ospf Md5Authentication Key Args - MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
- V3
Switch
Routing Ospf V3Args - OSPF v3 configuration
- network
Id String - networkId path parameter. Network ID
- areas
List<Switch
Routing Ospf Area> - OSPF areas
- dead
Timer IntegerIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- enabled Boolean
- Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
- hello
Timer IntegerIn Seconds - 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.
- md5Authentication
Enabled Boolean - Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
- md5Authentication
Key SwitchRouting Ospf Md5Authentication Key - MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
- v3
Switch
Routing Ospf V3 - OSPF v3 configuration
- network
Id string - networkId path parameter. Network ID
- areas
Switch
Routing Ospf Area[] - OSPF areas
- dead
Timer numberIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- enabled boolean
- Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
- hello
Timer numberIn Seconds - 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.
- md5Authentication
Enabled boolean - Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
- md5Authentication
Key SwitchRouting Ospf Md5Authentication Key - MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
- v3
Switch
Routing Ospf V3 - OSPF v3 configuration
- network_
id str - networkId path parameter. Network ID
- areas
Sequence[Switch
Routing Ospf Area Args] - OSPF areas
- dead_
timer_ intin_ seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- enabled bool
- Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
- hello_
timer_ intin_ seconds - 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.
- md5_
authentication_ boolenabled - Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
- md5_
authentication_ Switchkey Routing Ospf Md5Authentication Key Args - MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
- v3
Switch
Routing Ospf V3Args - OSPF v3 configuration
- network
Id String - networkId path parameter. Network ID
- areas List<Property Map>
- OSPF areas
- dead
Timer NumberIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- enabled Boolean
- Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
- hello
Timer NumberIn Seconds - 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.
- md5Authentication
Enabled Boolean - Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
- md5Authentication
Key Property Map - MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
- v3 Property Map
- OSPF v3 configuration
Outputs
All input properties are implicitly available as output properties. Additionally, the SwitchRoutingOspf resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing SwitchRoutingOspf Resource
Get an existing SwitchRoutingOspf resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SwitchRoutingOspfState, opts?: CustomResourceOptions): SwitchRoutingOspf
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
areas: Optional[Sequence[SwitchRoutingOspfAreaArgs]] = None,
dead_timer_in_seconds: Optional[int] = None,
enabled: Optional[bool] = None,
hello_timer_in_seconds: Optional[int] = None,
md5_authentication_enabled: Optional[bool] = None,
md5_authentication_key: Optional[SwitchRoutingOspfMd5AuthenticationKeyArgs] = None,
network_id: Optional[str] = None,
v3: Optional[SwitchRoutingOspfV3Args] = None) -> SwitchRoutingOspf
func GetSwitchRoutingOspf(ctx *Context, name string, id IDInput, state *SwitchRoutingOspfState, opts ...ResourceOption) (*SwitchRoutingOspf, error)
public static SwitchRoutingOspf Get(string name, Input<string> id, SwitchRoutingOspfState? state, CustomResourceOptions? opts = null)
public static SwitchRoutingOspf get(String name, Output<String> id, SwitchRoutingOspfState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Areas
List<Switch
Routing Ospf Area> - OSPF areas
- Dead
Timer intIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- Enabled bool
- Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
- Hello
Timer intIn Seconds - 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.
- Md5Authentication
Enabled bool - Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
- Md5Authentication
Key SwitchRouting Ospf Md5Authentication Key - MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
- Network
Id string - networkId path parameter. Network ID
- V3
Switch
Routing Ospf V3 - OSPF v3 configuration
- Areas
[]Switch
Routing Ospf Area Args - OSPF areas
- Dead
Timer intIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- Enabled bool
- Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
- Hello
Timer intIn Seconds - 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.
- Md5Authentication
Enabled bool - Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
- Md5Authentication
Key SwitchRouting Ospf Md5Authentication Key Args - MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
- Network
Id string - networkId path parameter. Network ID
- V3
Switch
Routing Ospf V3Args - OSPF v3 configuration
- areas
List<Switch
Routing Ospf Area> - OSPF areas
- dead
Timer IntegerIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- enabled Boolean
- Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
- hello
Timer IntegerIn Seconds - 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.
- md5Authentication
Enabled Boolean - Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
- md5Authentication
Key SwitchRouting Ospf Md5Authentication Key - MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
- network
Id String - networkId path parameter. Network ID
- v3
Switch
Routing Ospf V3 - OSPF v3 configuration
- areas
Switch
Routing Ospf Area[] - OSPF areas
- dead
Timer numberIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- enabled boolean
- Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
- hello
Timer numberIn Seconds - 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.
- md5Authentication
Enabled boolean - Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
- md5Authentication
Key SwitchRouting Ospf Md5Authentication Key - MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
- network
Id string - networkId path parameter. Network ID
- v3
Switch
Routing Ospf V3 - OSPF v3 configuration
- areas
Sequence[Switch
Routing Ospf Area Args] - OSPF areas
- dead_
timer_ intin_ seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- enabled bool
- Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
- hello_
timer_ intin_ seconds - 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.
- md5_
authentication_ boolenabled - Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
- md5_
authentication_ Switchkey Routing Ospf Md5Authentication Key Args - MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
- network_
id str - networkId path parameter. Network ID
- v3
Switch
Routing Ospf V3Args - OSPF v3 configuration
- areas List<Property Map>
- OSPF areas
- dead
Timer NumberIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- enabled Boolean
- Boolean value to enable or disable OSPF routing. OSPF routing is disabled by default.
- hello
Timer NumberIn Seconds - 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.
- md5Authentication
Enabled Boolean - Boolean value to enable or disable MD5 authentication. MD5 authentication is disabled by default.
- md5Authentication
Key Property Map - MD5 authentication credentials. This param is only relevant if md5AuthenticationEnabled is true
- network
Id String - networkId path parameter. Network ID
- v3 Property Map
- OSPF v3 configuration
Supporting Types
SwitchRoutingOspfArea, SwitchRoutingOspfAreaArgs
SwitchRoutingOspfMd5AuthenticationKey, SwitchRoutingOspfMd5AuthenticationKeyArgs
- Id int
- MD5 authentication key index. Key index must be between 1 to 255
- Passphrase string
- MD5 authentication passphrase
- Id int
- MD5 authentication key index. Key index must be between 1 to 255
- Passphrase string
- MD5 authentication passphrase
- id Integer
- MD5 authentication key index. Key index must be between 1 to 255
- passphrase String
- MD5 authentication passphrase
- id number
- MD5 authentication key index. Key index must be between 1 to 255
- passphrase string
- MD5 authentication passphrase
- id int
- MD5 authentication key index. Key index must be between 1 to 255
- passphrase str
- MD5 authentication passphrase
- id Number
- MD5 authentication key index. Key index must be between 1 to 255
- passphrase String
- MD5 authentication passphrase
SwitchRoutingOspfV3, SwitchRoutingOspfV3Args
- Areas
List<Switch
Routing Ospf V3Area> - OSPF v3 areas
- Dead
Timer intIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- Enabled bool
- Boolean value to enable or disable V3 OSPF routing. OSPF V3 routing is disabled by default.
- Hello
Timer intIn Seconds - 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.
- Areas
[]Switch
Routing Ospf V3Area - OSPF v3 areas
- Dead
Timer intIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- Enabled bool
- Boolean value to enable or disable V3 OSPF routing. OSPF V3 routing is disabled by default.
- Hello
Timer intIn Seconds - 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.
- areas
List<Switch
Routing Ospf V3Area> - OSPF v3 areas
- dead
Timer IntegerIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- enabled Boolean
- Boolean value to enable or disable V3 OSPF routing. OSPF V3 routing is disabled by default.
- hello
Timer IntegerIn Seconds - 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.
- areas
Switch
Routing Ospf V3Area[] - OSPF v3 areas
- dead
Timer numberIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- enabled boolean
- Boolean value to enable or disable V3 OSPF routing. OSPF V3 routing is disabled by default.
- hello
Timer numberIn Seconds - 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.
- areas
Sequence[Switch
Routing Ospf V3Area] - OSPF v3 areas
- dead_
timer_ intin_ seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- enabled bool
- Boolean value to enable or disable V3 OSPF routing. OSPF V3 routing is disabled by default.
- hello_
timer_ intin_ seconds - 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.
- areas List<Property Map>
- OSPF v3 areas
- dead
Timer NumberIn Seconds - Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
- enabled Boolean
- Boolean value to enable or disable V3 OSPF routing. OSPF V3 routing is disabled by default.
- hello
Timer NumberIn Seconds - 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.
SwitchRoutingOspfV3Area, SwitchRoutingOspfV3AreaArgs
Import
$ pulumi import meraki:networks/switchRoutingOspf:SwitchRoutingOspf example "network_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.