sdwan.OtherThousandeyesFeature
Explore with Pulumi AI
This resource can manage a Other ThousandEyes Feature.
- Minimum SD-WAN Manager version: 20.12.0
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.sdwan.OtherThousandeyesFeature;
import com.pulumi.sdwan.OtherThousandeyesFeatureArgs;
import com.pulumi.sdwan.inputs.OtherThousandeyesFeatureVirtualApplicationArgs;
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 OtherThousandeyesFeature("example", OtherThousandeyesFeatureArgs.builder()
            .name("Example")
            .description("My Example")
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .virtualApplications(OtherThousandeyesFeatureVirtualApplicationArgs.builder()
                .account_group_token("qwer")
                .vpn(1)
                .management_ip("10.0.0.2")
                .management_subnet_mask("255.255.255.0")
                .agent_default_gateway("10.0.0.1")
                .name_server_ip("77.77.77.71")
                .hostname("thousandeyesHost")
                .proxy_type("static")
                .proxy_host("proxy.thousandeyes.com")
                .proxy_port(3128)
                .build())
            .build());
    }
}
resources:
  example:
    type: sdwan:OtherThousandeyesFeature
    properties:
      name: Example
      description: My Example
      featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      virtualApplications:
        - account_group_token: qwer
          vpn: 1
          management_ip: 10.0.0.2
          management_subnet_mask: 255.255.255.0
          agent_default_gateway: 10.0.0.1
          name_server_ip: 77.77.77.71
          hostname: thousandeyesHost
          proxy_type: static
          proxy_host: proxy.thousandeyes.com
          proxy_port: 3128
Create OtherThousandeyesFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OtherThousandeyesFeature(name: string, args: OtherThousandeyesFeatureArgs, opts?: CustomResourceOptions);@overload
def OtherThousandeyesFeature(resource_name: str,
                             args: OtherThousandeyesFeatureArgs,
                             opts: Optional[ResourceOptions] = None)
@overload
def OtherThousandeyesFeature(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             feature_profile_id: Optional[str] = None,
                             description: Optional[str] = None,
                             name: Optional[str] = None,
                             virtual_applications: Optional[Sequence[OtherThousandeyesFeatureVirtualApplicationArgs]] = None)func NewOtherThousandeyesFeature(ctx *Context, name string, args OtherThousandeyesFeatureArgs, opts ...ResourceOption) (*OtherThousandeyesFeature, error)public OtherThousandeyesFeature(string name, OtherThousandeyesFeatureArgs args, CustomResourceOptions? opts = null)
public OtherThousandeyesFeature(String name, OtherThousandeyesFeatureArgs args)
public OtherThousandeyesFeature(String name, OtherThousandeyesFeatureArgs args, CustomResourceOptions options)
type: sdwan:OtherThousandeyesFeature
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 OtherThousandeyesFeatureArgs
- 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 OtherThousandeyesFeatureArgs
- 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 OtherThousandeyesFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OtherThousandeyesFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OtherThousandeyesFeatureArgs
- 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 otherThousandeyesFeatureResource = new Sdwan.OtherThousandeyesFeature("otherThousandeyesFeatureResource", new()
{
    FeatureProfileId = "string",
    Description = "string",
    Name = "string",
    VirtualApplications = new[]
    {
        new Sdwan.Inputs.OtherThousandeyesFeatureVirtualApplicationArgs
        {
            AccountGroupToken = "string",
            AccountGroupTokenVariable = "string",
            AgentDefaultGateway = "string",
            AgentDefaultGatewayVariable = "string",
            Hostname = "string",
            HostnameVariable = "string",
            ManagementIp = "string",
            ManagementIpVariable = "string",
            ManagementSubnetMask = "string",
            ManagementSubnetMaskVariable = "string",
            NameServerIp = "string",
            NameServerIpVariable = "string",
            PacUrl = "string",
            PacUrlVariable = "string",
            ProxyHost = "string",
            ProxyHostVariable = "string",
            ProxyPort = 0,
            ProxyPortVariable = "string",
            ProxyType = "string",
            Vpn = 0,
            VpnVariable = "string",
        },
    },
});
example, err := sdwan.NewOtherThousandeyesFeature(ctx, "otherThousandeyesFeatureResource", &sdwan.OtherThousandeyesFeatureArgs{
	FeatureProfileId: pulumi.String("string"),
	Description:      pulumi.String("string"),
	Name:             pulumi.String("string"),
	VirtualApplications: sdwan.OtherThousandeyesFeatureVirtualApplicationArray{
		&sdwan.OtherThousandeyesFeatureVirtualApplicationArgs{
			AccountGroupToken:            pulumi.String("string"),
			AccountGroupTokenVariable:    pulumi.String("string"),
			AgentDefaultGateway:          pulumi.String("string"),
			AgentDefaultGatewayVariable:  pulumi.String("string"),
			Hostname:                     pulumi.String("string"),
			HostnameVariable:             pulumi.String("string"),
			ManagementIp:                 pulumi.String("string"),
			ManagementIpVariable:         pulumi.String("string"),
			ManagementSubnetMask:         pulumi.String("string"),
			ManagementSubnetMaskVariable: pulumi.String("string"),
			NameServerIp:                 pulumi.String("string"),
			NameServerIpVariable:         pulumi.String("string"),
			PacUrl:                       pulumi.String("string"),
			PacUrlVariable:               pulumi.String("string"),
			ProxyHost:                    pulumi.String("string"),
			ProxyHostVariable:            pulumi.String("string"),
			ProxyPort:                    pulumi.Int(0),
			ProxyPortVariable:            pulumi.String("string"),
			ProxyType:                    pulumi.String("string"),
			Vpn:                          pulumi.Int(0),
			VpnVariable:                  pulumi.String("string"),
		},
	},
})
var otherThousandeyesFeatureResource = new OtherThousandeyesFeature("otherThousandeyesFeatureResource", OtherThousandeyesFeatureArgs.builder()
    .featureProfileId("string")
    .description("string")
    .name("string")
    .virtualApplications(OtherThousandeyesFeatureVirtualApplicationArgs.builder()
        .accountGroupToken("string")
        .accountGroupTokenVariable("string")
        .agentDefaultGateway("string")
        .agentDefaultGatewayVariable("string")
        .hostname("string")
        .hostnameVariable("string")
        .managementIp("string")
        .managementIpVariable("string")
        .managementSubnetMask("string")
        .managementSubnetMaskVariable("string")
        .nameServerIp("string")
        .nameServerIpVariable("string")
        .pacUrl("string")
        .pacUrlVariable("string")
        .proxyHost("string")
        .proxyHostVariable("string")
        .proxyPort(0)
        .proxyPortVariable("string")
        .proxyType("string")
        .vpn(0)
        .vpnVariable("string")
        .build())
    .build());
other_thousandeyes_feature_resource = sdwan.OtherThousandeyesFeature("otherThousandeyesFeatureResource",
    feature_profile_id="string",
    description="string",
    name="string",
    virtual_applications=[{
        "account_group_token": "string",
        "account_group_token_variable": "string",
        "agent_default_gateway": "string",
        "agent_default_gateway_variable": "string",
        "hostname": "string",
        "hostname_variable": "string",
        "management_ip": "string",
        "management_ip_variable": "string",
        "management_subnet_mask": "string",
        "management_subnet_mask_variable": "string",
        "name_server_ip": "string",
        "name_server_ip_variable": "string",
        "pac_url": "string",
        "pac_url_variable": "string",
        "proxy_host": "string",
        "proxy_host_variable": "string",
        "proxy_port": 0,
        "proxy_port_variable": "string",
        "proxy_type": "string",
        "vpn": 0,
        "vpn_variable": "string",
    }])
const otherThousandeyesFeatureResource = new sdwan.OtherThousandeyesFeature("otherThousandeyesFeatureResource", {
    featureProfileId: "string",
    description: "string",
    name: "string",
    virtualApplications: [{
        accountGroupToken: "string",
        accountGroupTokenVariable: "string",
        agentDefaultGateway: "string",
        agentDefaultGatewayVariable: "string",
        hostname: "string",
        hostnameVariable: "string",
        managementIp: "string",
        managementIpVariable: "string",
        managementSubnetMask: "string",
        managementSubnetMaskVariable: "string",
        nameServerIp: "string",
        nameServerIpVariable: "string",
        pacUrl: "string",
        pacUrlVariable: "string",
        proxyHost: "string",
        proxyHostVariable: "string",
        proxyPort: 0,
        proxyPortVariable: "string",
        proxyType: "string",
        vpn: 0,
        vpnVariable: "string",
    }],
});
type: sdwan:OtherThousandeyesFeature
properties:
    description: string
    featureProfileId: string
    name: string
    virtualApplications:
        - accountGroupToken: string
          accountGroupTokenVariable: string
          agentDefaultGateway: string
          agentDefaultGatewayVariable: string
          hostname: string
          hostnameVariable: string
          managementIp: string
          managementIpVariable: string
          managementSubnetMask: string
          managementSubnetMaskVariable: string
          nameServerIp: string
          nameServerIpVariable: string
          pacUrl: string
          pacUrlVariable: string
          proxyHost: string
          proxyHostVariable: string
          proxyPort: 0
          proxyPortVariable: string
          proxyType: string
          vpn: 0
          vpnVariable: string
OtherThousandeyesFeature 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 OtherThousandeyesFeature resource accepts the following input properties:
- FeatureProfile stringId 
- Feature Profile ID
- Description string
- The description of the Feature
- Name string
- The name of the Feature
- VirtualApplications List<OtherThousandeyes Feature Virtual Application> 
- Virtual application Instance
- FeatureProfile stringId 
- Feature Profile ID
- Description string
- The description of the Feature
- Name string
- The name of the Feature
- VirtualApplications []OtherThousandeyes Feature Virtual Application Args 
- Virtual application Instance
- featureProfile StringId 
- Feature Profile ID
- description String
- The description of the Feature
- name String
- The name of the Feature
- virtualApplications List<OtherThousandeyes Feature Virtual Application> 
- Virtual application Instance
- featureProfile stringId 
- Feature Profile ID
- description string
- The description of the Feature
- name string
- The name of the Feature
- virtualApplications OtherThousandeyes Feature Virtual Application[] 
- Virtual application Instance
- feature_profile_ strid 
- Feature Profile ID
- description str
- The description of the Feature
- name str
- The name of the Feature
- virtual_applications Sequence[OtherThousandeyes Feature Virtual Application Args] 
- Virtual application Instance
- featureProfile StringId 
- Feature Profile ID
- description String
- The description of the Feature
- name String
- The name of the Feature
- virtualApplications List<Property Map>
- Virtual application Instance
Outputs
All input properties are implicitly available as output properties. Additionally, the OtherThousandeyesFeature resource produces the following output properties:
Look up Existing OtherThousandeyesFeature Resource
Get an existing OtherThousandeyesFeature 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?: OtherThousandeyesFeatureState, opts?: CustomResourceOptions): OtherThousandeyesFeature@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        feature_profile_id: Optional[str] = None,
        name: Optional[str] = None,
        version: Optional[int] = None,
        virtual_applications: Optional[Sequence[OtherThousandeyesFeatureVirtualApplicationArgs]] = None) -> OtherThousandeyesFeaturefunc GetOtherThousandeyesFeature(ctx *Context, name string, id IDInput, state *OtherThousandeyesFeatureState, opts ...ResourceOption) (*OtherThousandeyesFeature, error)public static OtherThousandeyesFeature Get(string name, Input<string> id, OtherThousandeyesFeatureState? state, CustomResourceOptions? opts = null)public static OtherThousandeyesFeature get(String name, Output<String> id, OtherThousandeyesFeatureState state, CustomResourceOptions options)resources:  _:    type: sdwan:OtherThousandeyesFeature    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.
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Name string
- The name of the Feature
- Version int
- The version of the Feature
- VirtualApplications List<OtherThousandeyes Feature Virtual Application> 
- Virtual application Instance
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Name string
- The name of the Feature
- Version int
- The version of the Feature
- VirtualApplications []OtherThousandeyes Feature Virtual Application Args 
- Virtual application Instance
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- name String
- The name of the Feature
- version Integer
- The version of the Feature
- virtualApplications List<OtherThousandeyes Feature Virtual Application> 
- Virtual application Instance
- description string
- The description of the Feature
- featureProfile stringId 
- Feature Profile ID
- name string
- The name of the Feature
- version number
- The version of the Feature
- virtualApplications OtherThousandeyes Feature Virtual Application[] 
- Virtual application Instance
- description str
- The description of the Feature
- feature_profile_ strid 
- Feature Profile ID
- name str
- The name of the Feature
- version int
- The version of the Feature
- virtual_applications Sequence[OtherThousandeyes Feature Virtual Application Args] 
- Virtual application Instance
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- name String
- The name of the Feature
- version Number
- The version of the Feature
- virtualApplications List<Property Map>
- Virtual application Instance
Supporting Types
OtherThousandeyesFeatureVirtualApplication, OtherThousandeyesFeatureVirtualApplicationArgs          
- AccountGroup stringToken 
- Set the Account Group Token
- AccountGroup stringToken Variable 
- Variable name
- AgentDefault stringGateway 
- Set the Agent default gateway
- AgentDefault stringGateway Variable 
- Variable name
- Hostname string
- Set the host name
- HostnameVariable string
- Variable name
- ManagementIp string
- Set the Agent IP Address
- ManagementIp stringVariable 
- Variable name
- ManagementSubnet stringMask 
- Set the Agent SubnetMask- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- ManagementSubnet stringMask Variable 
- Variable name
- NameServer stringIp 
- Set the name server
- NameServer stringIp Variable 
- Variable name
- PacUrl string
- Set the proxy PAC url
- PacUrl stringVariable 
- Variable name
- ProxyHost string
- Set the Proxy Host
- ProxyHost stringVariable 
- Variable name
- ProxyPort int
- Set the Proxy Port- Range: 1-65535
 
- Range: 
- ProxyPort stringVariable 
- Variable name
- ProxyType string
- Select Web Proxy Type
- Vpn int
- VPN number- Range: 0-65530
 
- Range: 
- VpnVariable string
- Variable name
- AccountGroup stringToken 
- Set the Account Group Token
- AccountGroup stringToken Variable 
- Variable name
- AgentDefault stringGateway 
- Set the Agent default gateway
- AgentDefault stringGateway Variable 
- Variable name
- Hostname string
- Set the host name
- HostnameVariable string
- Variable name
- ManagementIp string
- Set the Agent IP Address
- ManagementIp stringVariable 
- Variable name
- ManagementSubnet stringMask 
- Set the Agent SubnetMask- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- ManagementSubnet stringMask Variable 
- Variable name
- NameServer stringIp 
- Set the name server
- NameServer stringIp Variable 
- Variable name
- PacUrl string
- Set the proxy PAC url
- PacUrl stringVariable 
- Variable name
- ProxyHost string
- Set the Proxy Host
- ProxyHost stringVariable 
- Variable name
- ProxyPort int
- Set the Proxy Port- Range: 1-65535
 
- Range: 
- ProxyPort stringVariable 
- Variable name
- ProxyType string
- Select Web Proxy Type
- Vpn int
- VPN number- Range: 0-65530
 
- Range: 
- VpnVariable string
- Variable name
- accountGroup StringToken 
- Set the Account Group Token
- accountGroup StringToken Variable 
- Variable name
- agentDefault StringGateway 
- Set the Agent default gateway
- agentDefault StringGateway Variable 
- Variable name
- hostname String
- Set the host name
- hostnameVariable String
- Variable name
- managementIp String
- Set the Agent IP Address
- managementIp StringVariable 
- Variable name
- managementSubnet StringMask 
- Set the Agent SubnetMask- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- managementSubnet StringMask Variable 
- Variable name
- nameServer StringIp 
- Set the name server
- nameServer StringIp Variable 
- Variable name
- pacUrl String
- Set the proxy PAC url
- pacUrl StringVariable 
- Variable name
- proxyHost String
- Set the Proxy Host
- proxyHost StringVariable 
- Variable name
- proxyPort Integer
- Set the Proxy Port- Range: 1-65535
 
- Range: 
- proxyPort StringVariable 
- Variable name
- proxyType String
- Select Web Proxy Type
- vpn Integer
- VPN number- Range: 0-65530
 
- Range: 
- vpnVariable String
- Variable name
- accountGroup stringToken 
- Set the Account Group Token
- accountGroup stringToken Variable 
- Variable name
- agentDefault stringGateway 
- Set the Agent default gateway
- agentDefault stringGateway Variable 
- Variable name
- hostname string
- Set the host name
- hostnameVariable string
- Variable name
- managementIp string
- Set the Agent IP Address
- managementIp stringVariable 
- Variable name
- managementSubnet stringMask 
- Set the Agent SubnetMask- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- managementSubnet stringMask Variable 
- Variable name
- nameServer stringIp 
- Set the name server
- nameServer stringIp Variable 
- Variable name
- pacUrl string
- Set the proxy PAC url
- pacUrl stringVariable 
- Variable name
- proxyHost string
- Set the Proxy Host
- proxyHost stringVariable 
- Variable name
- proxyPort number
- Set the Proxy Port- Range: 1-65535
 
- Range: 
- proxyPort stringVariable 
- Variable name
- proxyType string
- Select Web Proxy Type
- vpn number
- VPN number- Range: 0-65530
 
- Range: 
- vpnVariable string
- Variable name
- account_group_ strtoken 
- Set the Account Group Token
- account_group_ strtoken_ variable 
- Variable name
- agent_default_ strgateway 
- Set the Agent default gateway
- agent_default_ strgateway_ variable 
- Variable name
- hostname str
- Set the host name
- hostname_variable str
- Variable name
- management_ip str
- Set the Agent IP Address
- management_ip_ strvariable 
- Variable name
- management_subnet_ strmask 
- Set the Agent SubnetMask- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- management_subnet_ strmask_ variable 
- Variable name
- name_server_ strip 
- Set the name server
- name_server_ strip_ variable 
- Variable name
- pac_url str
- Set the proxy PAC url
- pac_url_ strvariable 
- Variable name
- proxy_host str
- Set the Proxy Host
- proxy_host_ strvariable 
- Variable name
- proxy_port int
- Set the Proxy Port- Range: 1-65535
 
- Range: 
- proxy_port_ strvariable 
- Variable name
- proxy_type str
- Select Web Proxy Type
- vpn int
- VPN number- Range: 0-65530
 
- Range: 
- vpn_variable str
- Variable name
- accountGroup StringToken 
- Set the Account Group Token
- accountGroup StringToken Variable 
- Variable name
- agentDefault StringGateway 
- Set the Agent default gateway
- agentDefault StringGateway Variable 
- Variable name
- hostname String
- Set the host name
- hostnameVariable String
- Variable name
- managementIp String
- Set the Agent IP Address
- managementIp StringVariable 
- Variable name
- managementSubnet StringMask 
- Set the Agent SubnetMask- Choices: 255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
 
- Choices: 
- managementSubnet StringMask Variable 
- Variable name
- nameServer StringIp 
- Set the name server
- nameServer StringIp Variable 
- Variable name
- pacUrl String
- Set the proxy PAC url
- pacUrl StringVariable 
- Variable name
- proxyHost String
- Set the Proxy Host
- proxyHost StringVariable 
- Variable name
- proxyPort Number
- Set the Proxy Port- Range: 1-65535
 
- Range: 
- proxyPort StringVariable 
- Variable name
- proxyType String
- Select Web Proxy Type
- vpn Number
- VPN number- Range: 0-65530
 
- Range: 
- vpnVariable String
- Variable name
Import
Expected import identifier with the format: “other_thousandeyes_feature_id,feature_profile_id”
$ pulumi import sdwan:index/otherThousandeyesFeature:OtherThousandeyesFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the sdwanTerraform Provider.
