cloudflare.MagicWanGreTunnel
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleMagicWanGreTunnel = new cloudflare.MagicWanGreTunnel("example_magic_wan_gre_tunnel", {accountId: "023e105f4ecef8ad9ca31a8372d0c353"});
import pulumi
import pulumi_cloudflare as cloudflare
example_magic_wan_gre_tunnel = cloudflare.MagicWanGreTunnel("example_magic_wan_gre_tunnel", account_id="023e105f4ecef8ad9ca31a8372d0c353")
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.NewMagicWanGreTunnel(ctx, "example_magic_wan_gre_tunnel", &cloudflare.MagicWanGreTunnelArgs{
AccountId: pulumi.String("023e105f4ecef8ad9ca31a8372d0c353"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var exampleMagicWanGreTunnel = new Cloudflare.MagicWanGreTunnel("example_magic_wan_gre_tunnel", new()
{
AccountId = "023e105f4ecef8ad9ca31a8372d0c353",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.MagicWanGreTunnel;
import com.pulumi.cloudflare.MagicWanGreTunnelArgs;
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 exampleMagicWanGreTunnel = new MagicWanGreTunnel("exampleMagicWanGreTunnel", MagicWanGreTunnelArgs.builder()
.accountId("023e105f4ecef8ad9ca31a8372d0c353")
.build());
}
}
resources:
exampleMagicWanGreTunnel:
type: cloudflare:MagicWanGreTunnel
name: example_magic_wan_gre_tunnel
properties:
accountId: 023e105f4ecef8ad9ca31a8372d0c353
Create MagicWanGreTunnel Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MagicWanGreTunnel(name: string, args: MagicWanGreTunnelArgs, opts?: CustomResourceOptions);
@overload
def MagicWanGreTunnel(resource_name: str,
args: MagicWanGreTunnelArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MagicWanGreTunnel(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
cloudflare_gre_endpoint: Optional[str] = None,
customer_gre_endpoint: Optional[str] = None,
description: Optional[str] = None,
gre_tunnel_id: Optional[str] = None,
health_check: Optional[MagicWanGreTunnelHealthCheckArgs] = None,
interface_address: Optional[str] = None,
mtu: Optional[int] = None,
name: Optional[str] = None,
ttl: Optional[int] = None)
func NewMagicWanGreTunnel(ctx *Context, name string, args MagicWanGreTunnelArgs, opts ...ResourceOption) (*MagicWanGreTunnel, error)
public MagicWanGreTunnel(string name, MagicWanGreTunnelArgs args, CustomResourceOptions? opts = null)
public MagicWanGreTunnel(String name, MagicWanGreTunnelArgs args)
public MagicWanGreTunnel(String name, MagicWanGreTunnelArgs args, CustomResourceOptions options)
type: cloudflare:MagicWanGreTunnel
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 MagicWanGreTunnelArgs
- 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 MagicWanGreTunnelArgs
- 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 MagicWanGreTunnelArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MagicWanGreTunnelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MagicWanGreTunnelArgs
- 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 magicWanGreTunnelResource = new Cloudflare.MagicWanGreTunnel("magicWanGreTunnelResource", new()
{
AccountId = "string",
CloudflareGreEndpoint = "string",
CustomerGreEndpoint = "string",
Description = "string",
GreTunnelId = "string",
HealthCheck = new Cloudflare.Inputs.MagicWanGreTunnelHealthCheckArgs
{
Direction = "string",
Enabled = false,
Rate = "string",
Target = new Cloudflare.Inputs.MagicWanGreTunnelHealthCheckTargetArgs
{
Effective = "string",
Saved = "string",
},
Type = "string",
},
InterfaceAddress = "string",
Mtu = 0,
Name = "string",
Ttl = 0,
});
example, err := cloudflare.NewMagicWanGreTunnel(ctx, "magicWanGreTunnelResource", &cloudflare.MagicWanGreTunnelArgs{
AccountId: pulumi.String("string"),
CloudflareGreEndpoint: pulumi.String("string"),
CustomerGreEndpoint: pulumi.String("string"),
Description: pulumi.String("string"),
GreTunnelId: pulumi.String("string"),
HealthCheck: &cloudflare.MagicWanGreTunnelHealthCheckArgs{
Direction: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Rate: pulumi.String("string"),
Target: &cloudflare.MagicWanGreTunnelHealthCheckTargetArgs{
Effective: pulumi.String("string"),
Saved: pulumi.String("string"),
},
Type: pulumi.String("string"),
},
InterfaceAddress: pulumi.String("string"),
Mtu: pulumi.Int(0),
Name: pulumi.String("string"),
Ttl: pulumi.Int(0),
})
var magicWanGreTunnelResource = new MagicWanGreTunnel("magicWanGreTunnelResource", MagicWanGreTunnelArgs.builder()
.accountId("string")
.cloudflareGreEndpoint("string")
.customerGreEndpoint("string")
.description("string")
.greTunnelId("string")
.healthCheck(MagicWanGreTunnelHealthCheckArgs.builder()
.direction("string")
.enabled(false)
.rate("string")
.target(MagicWanGreTunnelHealthCheckTargetArgs.builder()
.effective("string")
.saved("string")
.build())
.type("string")
.build())
.interfaceAddress("string")
.mtu(0)
.name("string")
.ttl(0)
.build());
magic_wan_gre_tunnel_resource = cloudflare.MagicWanGreTunnel("magicWanGreTunnelResource",
account_id="string",
cloudflare_gre_endpoint="string",
customer_gre_endpoint="string",
description="string",
gre_tunnel_id="string",
health_check={
"direction": "string",
"enabled": False,
"rate": "string",
"target": {
"effective": "string",
"saved": "string",
},
"type": "string",
},
interface_address="string",
mtu=0,
name="string",
ttl=0)
const magicWanGreTunnelResource = new cloudflare.MagicWanGreTunnel("magicWanGreTunnelResource", {
accountId: "string",
cloudflareGreEndpoint: "string",
customerGreEndpoint: "string",
description: "string",
greTunnelId: "string",
healthCheck: {
direction: "string",
enabled: false,
rate: "string",
target: {
effective: "string",
saved: "string",
},
type: "string",
},
interfaceAddress: "string",
mtu: 0,
name: "string",
ttl: 0,
});
type: cloudflare:MagicWanGreTunnel
properties:
accountId: string
cloudflareGreEndpoint: string
customerGreEndpoint: string
description: string
greTunnelId: string
healthCheck:
direction: string
enabled: false
rate: string
target:
effective: string
saved: string
type: string
interfaceAddress: string
mtu: 0
name: string
ttl: 0
MagicWanGreTunnel Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MagicWanGreTunnel resource accepts the following input properties:
- Account
Id string - Identifier
- Cloudflare
Gre stringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- Customer
Gre stringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- Description string
- An optional description of the GRE tunnel.
- Gre
Tunnel stringId - Identifier
- Health
Check MagicWan Gre Tunnel Health Check - Interface
Address string - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- Mtu int
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- Name string
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- Ttl int
- Time To Live (TTL) in number of hops of the GRE tunnel.
- Account
Id string - Identifier
- Cloudflare
Gre stringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- Customer
Gre stringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- Description string
- An optional description of the GRE tunnel.
- Gre
Tunnel stringId - Identifier
- Health
Check MagicWan Gre Tunnel Health Check Args - Interface
Address string - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- Mtu int
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- Name string
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- Ttl int
- Time To Live (TTL) in number of hops of the GRE tunnel.
- account
Id String - Identifier
- cloudflare
Gre StringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- customer
Gre StringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- description String
- An optional description of the GRE tunnel.
- gre
Tunnel StringId - Identifier
- health
Check MagicWan Gre Tunnel Health Check - interface
Address String - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- mtu Integer
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name String
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl Integer
- Time To Live (TTL) in number of hops of the GRE tunnel.
- account
Id string - Identifier
- cloudflare
Gre stringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- customer
Gre stringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- description string
- An optional description of the GRE tunnel.
- gre
Tunnel stringId - Identifier
- health
Check MagicWan Gre Tunnel Health Check - interface
Address string - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- mtu number
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name string
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl number
- Time To Live (TTL) in number of hops of the GRE tunnel.
- account_
id str - Identifier
- cloudflare_
gre_ strendpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- customer_
gre_ strendpoint - The IP address assigned to the customer side of the GRE tunnel.
- description str
- An optional description of the GRE tunnel.
- gre_
tunnel_ strid - Identifier
- health_
check MagicWan Gre Tunnel Health Check Args - interface_
address str - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- mtu int
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name str
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl int
- Time To Live (TTL) in number of hops of the GRE tunnel.
- account
Id String - Identifier
- cloudflare
Gre StringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- customer
Gre StringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- description String
- An optional description of the GRE tunnel.
- gre
Tunnel StringId - Identifier
- health
Check Property Map - interface
Address String - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- mtu Number
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name String
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl Number
- Time To Live (TTL) in number of hops of the GRE tunnel.
Outputs
All input properties are implicitly available as output properties. Additionally, the MagicWanGreTunnel resource produces the following output properties:
- Gre
Tunnel MagicWan Gre Tunnel Gre Tunnel - Gre
Tunnels List<MagicWan Gre Tunnel Gre Tunnel> - Id string
- The provider-assigned unique ID for this managed resource.
- Modified bool
- Modified
Gre MagicTunnel Wan Gre Tunnel Modified Gre Tunnel
- Gre
Tunnel MagicWan Gre Tunnel Gre Tunnel - Gre
Tunnels []MagicWan Gre Tunnel Gre Tunnel - Id string
- The provider-assigned unique ID for this managed resource.
- Modified bool
- Modified
Gre MagicTunnel Wan Gre Tunnel Modified Gre Tunnel
- gre
Tunnel MagicWan Gre Tunnel Gre Tunnel - gre
Tunnels List<MagicWan Gre Tunnel Gre Tunnel> - id String
- The provider-assigned unique ID for this managed resource.
- modified Boolean
- modified
Gre MagicTunnel Wan Gre Tunnel Modified Gre Tunnel
- gre
Tunnel MagicWan Gre Tunnel Gre Tunnel - gre
Tunnels MagicWan Gre Tunnel Gre Tunnel[] - id string
- The provider-assigned unique ID for this managed resource.
- modified boolean
- modified
Gre MagicTunnel Wan Gre Tunnel Modified Gre Tunnel
- gre_
tunnel MagicWan Gre Tunnel Gre Tunnel - gre_
tunnels Sequence[MagicWan Gre Tunnel Gre Tunnel] - id str
- The provider-assigned unique ID for this managed resource.
- modified bool
- modified_
gre_ Magictunnel Wan Gre Tunnel Modified Gre Tunnel
- gre
Tunnel Property Map - gre
Tunnels List<Property Map> - id String
- The provider-assigned unique ID for this managed resource.
- modified Boolean
- modified
Gre Property MapTunnel
Look up Existing MagicWanGreTunnel Resource
Get an existing MagicWanGreTunnel 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?: MagicWanGreTunnelState, opts?: CustomResourceOptions): MagicWanGreTunnel
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
cloudflare_gre_endpoint: Optional[str] = None,
customer_gre_endpoint: Optional[str] = None,
description: Optional[str] = None,
gre_tunnel: Optional[MagicWanGreTunnelGreTunnelArgs] = None,
gre_tunnel_id: Optional[str] = None,
gre_tunnels: Optional[Sequence[MagicWanGreTunnelGreTunnelArgs]] = None,
health_check: Optional[MagicWanGreTunnelHealthCheckArgs] = None,
interface_address: Optional[str] = None,
modified: Optional[bool] = None,
modified_gre_tunnel: Optional[MagicWanGreTunnelModifiedGreTunnelArgs] = None,
mtu: Optional[int] = None,
name: Optional[str] = None,
ttl: Optional[int] = None) -> MagicWanGreTunnel
func GetMagicWanGreTunnel(ctx *Context, name string, id IDInput, state *MagicWanGreTunnelState, opts ...ResourceOption) (*MagicWanGreTunnel, error)
public static MagicWanGreTunnel Get(string name, Input<string> id, MagicWanGreTunnelState? state, CustomResourceOptions? opts = null)
public static MagicWanGreTunnel get(String name, Output<String> id, MagicWanGreTunnelState state, CustomResourceOptions options)
resources: _: type: cloudflare:MagicWanGreTunnel get: id: ${id}
- 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.
- Account
Id string - Identifier
- Cloudflare
Gre stringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- Customer
Gre stringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- Description string
- An optional description of the GRE tunnel.
- Gre
Tunnel MagicWan Gre Tunnel Gre Tunnel - Gre
Tunnel stringId - Identifier
- Gre
Tunnels List<MagicWan Gre Tunnel Gre Tunnel> - Health
Check MagicWan Gre Tunnel Health Check - Interface
Address string - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- Modified bool
- Modified
Gre MagicTunnel Wan Gre Tunnel Modified Gre Tunnel - Mtu int
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- Name string
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- Ttl int
- Time To Live (TTL) in number of hops of the GRE tunnel.
- Account
Id string - Identifier
- Cloudflare
Gre stringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- Customer
Gre stringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- Description string
- An optional description of the GRE tunnel.
- Gre
Tunnel MagicWan Gre Tunnel Gre Tunnel Args - Gre
Tunnel stringId - Identifier
- Gre
Tunnels []MagicWan Gre Tunnel Gre Tunnel Args - Health
Check MagicWan Gre Tunnel Health Check Args - Interface
Address string - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- Modified bool
- Modified
Gre MagicTunnel Wan Gre Tunnel Modified Gre Tunnel Args - Mtu int
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- Name string
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- Ttl int
- Time To Live (TTL) in number of hops of the GRE tunnel.
- account
Id String - Identifier
- cloudflare
Gre StringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- customer
Gre StringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- description String
- An optional description of the GRE tunnel.
- gre
Tunnel MagicWan Gre Tunnel Gre Tunnel - gre
Tunnel StringId - Identifier
- gre
Tunnels List<MagicWan Gre Tunnel Gre Tunnel> - health
Check MagicWan Gre Tunnel Health Check - interface
Address String - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- modified Boolean
- modified
Gre MagicTunnel Wan Gre Tunnel Modified Gre Tunnel - mtu Integer
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name String
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl Integer
- Time To Live (TTL) in number of hops of the GRE tunnel.
- account
Id string - Identifier
- cloudflare
Gre stringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- customer
Gre stringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- description string
- An optional description of the GRE tunnel.
- gre
Tunnel MagicWan Gre Tunnel Gre Tunnel - gre
Tunnel stringId - Identifier
- gre
Tunnels MagicWan Gre Tunnel Gre Tunnel[] - health
Check MagicWan Gre Tunnel Health Check - interface
Address string - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- modified boolean
- modified
Gre MagicTunnel Wan Gre Tunnel Modified Gre Tunnel - mtu number
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name string
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl number
- Time To Live (TTL) in number of hops of the GRE tunnel.
- account_
id str - Identifier
- cloudflare_
gre_ strendpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- customer_
gre_ strendpoint - The IP address assigned to the customer side of the GRE tunnel.
- description str
- An optional description of the GRE tunnel.
- gre_
tunnel MagicWan Gre Tunnel Gre Tunnel Args - gre_
tunnel_ strid - Identifier
- gre_
tunnels Sequence[MagicWan Gre Tunnel Gre Tunnel Args] - health_
check MagicWan Gre Tunnel Health Check Args - interface_
address str - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- modified bool
- modified_
gre_ Magictunnel Wan Gre Tunnel Modified Gre Tunnel Args - mtu int
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name str
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl int
- Time To Live (TTL) in number of hops of the GRE tunnel.
- account
Id String - Identifier
- cloudflare
Gre StringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- customer
Gre StringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- description String
- An optional description of the GRE tunnel.
- gre
Tunnel Property Map - gre
Tunnel StringId - Identifier
- gre
Tunnels List<Property Map> - health
Check Property Map - interface
Address String - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- modified Boolean
- modified
Gre Property MapTunnel - mtu Number
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name String
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl Number
- Time To Live (TTL) in number of hops of the GRE tunnel.
Supporting Types
MagicWanGreTunnelGreTunnel, MagicWanGreTunnelGreTunnelArgs
- Cloudflare
Gre stringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- Created
On string - The date and time the tunnel was created.
- Customer
Gre stringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- Description string
- An optional description of the GRE tunnel.
- Health
Check MagicWan Gre Tunnel Gre Tunnel Health Check - Id string
- Tunnel identifier tag.
- Interface
Address string - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- Modified
On string - The date and time the tunnel was last modified.
- Mtu int
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- Name string
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- Ttl int
- Time To Live (TTL) in number of hops of the GRE tunnel.
- Cloudflare
Gre stringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- Created
On string - The date and time the tunnel was created.
- Customer
Gre stringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- Description string
- An optional description of the GRE tunnel.
- Health
Check MagicWan Gre Tunnel Gre Tunnel Health Check - Id string
- Tunnel identifier tag.
- Interface
Address string - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- Modified
On string - The date and time the tunnel was last modified.
- Mtu int
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- Name string
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- Ttl int
- Time To Live (TTL) in number of hops of the GRE tunnel.
- cloudflare
Gre StringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- created
On String - The date and time the tunnel was created.
- customer
Gre StringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- description String
- An optional description of the GRE tunnel.
- health
Check MagicWan Gre Tunnel Gre Tunnel Health Check - id String
- Tunnel identifier tag.
- interface
Address String - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- modified
On String - The date and time the tunnel was last modified.
- mtu Integer
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name String
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl Integer
- Time To Live (TTL) in number of hops of the GRE tunnel.
- cloudflare
Gre stringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- created
On string - The date and time the tunnel was created.
- customer
Gre stringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- description string
- An optional description of the GRE tunnel.
- health
Check MagicWan Gre Tunnel Gre Tunnel Health Check - id string
- Tunnel identifier tag.
- interface
Address string - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- modified
On string - The date and time the tunnel was last modified.
- mtu number
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name string
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl number
- Time To Live (TTL) in number of hops of the GRE tunnel.
- cloudflare_
gre_ strendpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- created_
on str - The date and time the tunnel was created.
- customer_
gre_ strendpoint - The IP address assigned to the customer side of the GRE tunnel.
- description str
- An optional description of the GRE tunnel.
- health_
check MagicWan Gre Tunnel Gre Tunnel Health Check - id str
- Tunnel identifier tag.
- interface_
address str - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- modified_
on str - The date and time the tunnel was last modified.
- mtu int
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name str
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl int
- Time To Live (TTL) in number of hops of the GRE tunnel.
- cloudflare
Gre StringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- created
On String - The date and time the tunnel was created.
- customer
Gre StringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- description String
- An optional description of the GRE tunnel.
- health
Check Property Map - id String
- Tunnel identifier tag.
- interface
Address String - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- modified
On String - The date and time the tunnel was last modified.
- mtu Number
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name String
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl Number
- Time To Live (TTL) in number of hops of the GRE tunnel.
MagicWanGreTunnelGreTunnelHealthCheck, MagicWanGreTunnelGreTunnelHealthCheckArgs
- Direction string
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- Enabled bool
- Determines whether to run healthchecks for a tunnel.
- Rate string
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - Target
Magic
Wan Gre Tunnel Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - Type string
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- Direction string
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- Enabled bool
- Determines whether to run healthchecks for a tunnel.
- Rate string
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - Target
Magic
Wan Gre Tunnel Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - Type string
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- direction String
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- enabled Boolean
- Determines whether to run healthchecks for a tunnel.
- rate String
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - target
Magic
Wan Gre Tunnel Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - type String
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- direction string
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- enabled boolean
- Determines whether to run healthchecks for a tunnel.
- rate string
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - target
Magic
Wan Gre Tunnel Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - type string
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- direction str
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- enabled bool
- Determines whether to run healthchecks for a tunnel.
- rate str
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - target
Magic
Wan Gre Tunnel Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - type str
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- direction String
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- enabled Boolean
- Determines whether to run healthchecks for a tunnel.
- rate String
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - target Property Map
- The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - type String
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
MagicWanGreTunnelGreTunnelHealthCheckTarget, MagicWanGreTunnelGreTunnelHealthCheckTargetArgs
- Effective string
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- Saved string
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- Effective string
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- Saved string
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- effective String
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- saved String
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- effective string
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- saved string
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- effective str
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- saved str
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- effective String
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- saved String
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
MagicWanGreTunnelHealthCheck, MagicWanGreTunnelHealthCheckArgs
- Direction string
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- Enabled bool
- Determines whether to run healthchecks for a tunnel.
- Rate string
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - Target
Magic
Wan Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - Type string
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- Direction string
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- Enabled bool
- Determines whether to run healthchecks for a tunnel.
- Rate string
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - Target
Magic
Wan Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - Type string
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- direction String
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- enabled Boolean
- Determines whether to run healthchecks for a tunnel.
- rate String
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - target
Magic
Wan Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - type String
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- direction string
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- enabled boolean
- Determines whether to run healthchecks for a tunnel.
- rate string
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - target
Magic
Wan Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - type string
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- direction str
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- enabled bool
- Determines whether to run healthchecks for a tunnel.
- rate str
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - target
Magic
Wan Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - type str
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- direction String
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- enabled Boolean
- Determines whether to run healthchecks for a tunnel.
- rate String
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - target Property Map
- The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - type String
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
MagicWanGreTunnelHealthCheckTarget, MagicWanGreTunnelHealthCheckTargetArgs
- Effective string
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- Saved string
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- Effective string
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- Saved string
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- effective String
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- saved String
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- effective string
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- saved string
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- effective str
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- saved str
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- effective String
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- saved String
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
MagicWanGreTunnelModifiedGreTunnel, MagicWanGreTunnelModifiedGreTunnelArgs
- Cloudflare
Gre stringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- Created
On string - The date and time the tunnel was created.
- Customer
Gre stringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- Description string
- An optional description of the GRE tunnel.
- Health
Check MagicWan Gre Tunnel Modified Gre Tunnel Health Check - Id string
- Tunnel identifier tag.
- Interface
Address string - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- Modified
On string - The date and time the tunnel was last modified.
- Mtu int
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- Name string
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- Ttl int
- Time To Live (TTL) in number of hops of the GRE tunnel.
- Cloudflare
Gre stringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- Created
On string - The date and time the tunnel was created.
- Customer
Gre stringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- Description string
- An optional description of the GRE tunnel.
- Health
Check MagicWan Gre Tunnel Modified Gre Tunnel Health Check - Id string
- Tunnel identifier tag.
- Interface
Address string - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- Modified
On string - The date and time the tunnel was last modified.
- Mtu int
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- Name string
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- Ttl int
- Time To Live (TTL) in number of hops of the GRE tunnel.
- cloudflare
Gre StringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- created
On String - The date and time the tunnel was created.
- customer
Gre StringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- description String
- An optional description of the GRE tunnel.
- health
Check MagicWan Gre Tunnel Modified Gre Tunnel Health Check - id String
- Tunnel identifier tag.
- interface
Address String - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- modified
On String - The date and time the tunnel was last modified.
- mtu Integer
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name String
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl Integer
- Time To Live (TTL) in number of hops of the GRE tunnel.
- cloudflare
Gre stringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- created
On string - The date and time the tunnel was created.
- customer
Gre stringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- description string
- An optional description of the GRE tunnel.
- health
Check MagicWan Gre Tunnel Modified Gre Tunnel Health Check - id string
- Tunnel identifier tag.
- interface
Address string - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- modified
On string - The date and time the tunnel was last modified.
- mtu number
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name string
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl number
- Time To Live (TTL) in number of hops of the GRE tunnel.
- cloudflare_
gre_ strendpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- created_
on str - The date and time the tunnel was created.
- customer_
gre_ strendpoint - The IP address assigned to the customer side of the GRE tunnel.
- description str
- An optional description of the GRE tunnel.
- health_
check MagicWan Gre Tunnel Modified Gre Tunnel Health Check - id str
- Tunnel identifier tag.
- interface_
address str - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- modified_
on str - The date and time the tunnel was last modified.
- mtu int
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name str
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl int
- Time To Live (TTL) in number of hops of the GRE tunnel.
- cloudflare
Gre StringEndpoint - The IP address assigned to the Cloudflare side of the GRE tunnel.
- created
On String - The date and time the tunnel was created.
- customer
Gre StringEndpoint - The IP address assigned to the customer side of the GRE tunnel.
- description String
- An optional description of the GRE tunnel.
- health
Check Property Map - id String
- Tunnel identifier tag.
- interface
Address String - A 31-bit prefix (/31 in CIDR notation) supporting two hosts, one for each side of the tunnel. Select the subnet from the following private IP space: 10.0.0.0–10.255.255.255, 172.16.0.0–172.31.255.255, 192.168.0.0–192.168.255.255.
- modified
On String - The date and time the tunnel was last modified.
- mtu Number
- Maximum Transmission Unit (MTU) in bytes for the GRE tunnel. The minimum value is 576.
- name String
- The name of the tunnel. The name cannot contain spaces or special characters, must be 15 characters or less, and cannot share a name with another GRE tunnel.
- ttl Number
- Time To Live (TTL) in number of hops of the GRE tunnel.
MagicWanGreTunnelModifiedGreTunnelHealthCheck, MagicWanGreTunnelModifiedGreTunnelHealthCheckArgs
- Direction string
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- Enabled bool
- Determines whether to run healthchecks for a tunnel.
- Rate string
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - Target
Magic
Wan Gre Tunnel Modified Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - Type string
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- Direction string
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- Enabled bool
- Determines whether to run healthchecks for a tunnel.
- Rate string
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - Target
Magic
Wan Gre Tunnel Modified Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - Type string
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- direction String
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- enabled Boolean
- Determines whether to run healthchecks for a tunnel.
- rate String
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - target
Magic
Wan Gre Tunnel Modified Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - type String
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- direction string
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- enabled boolean
- Determines whether to run healthchecks for a tunnel.
- rate string
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - target
Magic
Wan Gre Tunnel Modified Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - type string
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- direction str
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- enabled bool
- Determines whether to run healthchecks for a tunnel.
- rate str
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - target
Magic
Wan Gre Tunnel Modified Gre Tunnel Health Check Target - The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - type str
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
- direction String
- The direction of the flow of the healthcheck. Either unidirectional, where the probe comes to you via the tunnel and the result comes back to Cloudflare via the open Internet, or bidirectional where both the probe and result come and go via the tunnel. Available values: "unidirectional", "bidirectional".
- enabled Boolean
- Determines whether to run healthchecks for a tunnel.
- rate String
- How frequent the health check is run. The default value is
mid
. Available values: "low", "mid", "high". - target Property Map
- The destination address in a request type health check. After the healthcheck is decapsulated at the customer end of the tunnel, the ICMP echo will be forwarded to this address. This field defaults to
customer_gre_endpoint address
. This field is ignored for bidirectional healthchecks as the interface*address (not assigned to the Cloudflare side of the tunnel) is used as the target. Must be in object form if the x-magic-new-hc-target header is set to true and string form if x-magic-new-hc-target is absent or set to false. - type String
- The type of healthcheck to run, reply or request. The default value is
reply
. Available values: "reply", "request".
MagicWanGreTunnelModifiedGreTunnelHealthCheckTarget, MagicWanGreTunnelModifiedGreTunnelHealthCheckTargetArgs
- Effective string
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- Saved string
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- Effective string
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- Saved string
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- effective String
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- saved String
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- effective string
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- saved string
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- effective str
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- saved str
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
- effective String
- The effective health check target. If 'saved' is empty, then this field will be populated with the calculated default value on GET requests. Ignored in POST, PUT, and PATCH requests.
- saved String
- The saved health check target. Setting the value to the empty string indicates that the calculated default value will be used.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflare
Terraform Provider.