sdwan.SecurityAppHostingFeatureTemplate
Explore with Pulumi AI
This resource can manage a Security App Hosting feature template.
- Minimum SD-WAN Manager version: 15.0.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.SecurityAppHostingFeatureTemplate;
import com.pulumi.sdwan.SecurityAppHostingFeatureTemplateArgs;
import com.pulumi.sdwan.inputs.SecurityAppHostingFeatureTemplateVirtualApplicationArgs;
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 SecurityAppHostingFeatureTemplate("example", SecurityAppHostingFeatureTemplateArgs.builder()
            .name("Example")
            .description("My Example")
            .deviceTypes("vedge-C8000V")
            .virtualApplications(SecurityAppHostingFeatureTemplateVirtualApplicationArgs.builder()
                .instance_id("2e89c1fe-440a-43f5-9f3a-54a9836fdbb5")
                .application_type("utd")
                .nat(true)
                .database_url(false)
                .resource_profile("low")
                .service_gateway_ip("1.2.3.4/24")
                .service_ip("1.2.3.5/24")
                .data_gateway_ip("192.0.2.1/24")
                .data_service_ip("192.0.2.2/24")
                .build())
            .build());
    }
}
resources:
  example:
    type: sdwan:SecurityAppHostingFeatureTemplate
    properties:
      name: Example
      description: My Example
      deviceTypes:
        - vedge-C8000V
      virtualApplications:
        - instance_id: 2e89c1fe-440a-43f5-9f3a-54a9836fdbb5
          application_type: utd
          nat: true
          database_url: false
          resource_profile: low
          service_gateway_ip: 1.2.3.4/24
          service_ip: 1.2.3.5/24
          data_gateway_ip: 192.0.2.1/24
          data_service_ip: 192.0.2.2/24
Create SecurityAppHostingFeatureTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SecurityAppHostingFeatureTemplate(name: string, args: SecurityAppHostingFeatureTemplateArgs, opts?: CustomResourceOptions);@overload
def SecurityAppHostingFeatureTemplate(resource_name: str,
                                      args: SecurityAppHostingFeatureTemplateArgs,
                                      opts: Optional[ResourceOptions] = None)
@overload
def SecurityAppHostingFeatureTemplate(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      description: Optional[str] = None,
                                      device_types: Optional[Sequence[str]] = None,
                                      name: Optional[str] = None,
                                      virtual_applications: Optional[Sequence[SecurityAppHostingFeatureTemplateVirtualApplicationArgs]] = None)func NewSecurityAppHostingFeatureTemplate(ctx *Context, name string, args SecurityAppHostingFeatureTemplateArgs, opts ...ResourceOption) (*SecurityAppHostingFeatureTemplate, error)public SecurityAppHostingFeatureTemplate(string name, SecurityAppHostingFeatureTemplateArgs args, CustomResourceOptions? opts = null)
public SecurityAppHostingFeatureTemplate(String name, SecurityAppHostingFeatureTemplateArgs args)
public SecurityAppHostingFeatureTemplate(String name, SecurityAppHostingFeatureTemplateArgs args, CustomResourceOptions options)
type: sdwan:SecurityAppHostingFeatureTemplate
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 SecurityAppHostingFeatureTemplateArgs
- 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 SecurityAppHostingFeatureTemplateArgs
- 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 SecurityAppHostingFeatureTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SecurityAppHostingFeatureTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SecurityAppHostingFeatureTemplateArgs
- 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 securityAppHostingFeatureTemplateResource = new Sdwan.SecurityAppHostingFeatureTemplate("securityAppHostingFeatureTemplateResource", new()
{
    Description = "string",
    DeviceTypes = new[]
    {
        "string",
    },
    Name = "string",
    VirtualApplications = new[]
    {
        new Sdwan.Inputs.SecurityAppHostingFeatureTemplateVirtualApplicationArgs
        {
            ApplicationType = "string",
            DataGatewayIp = "string",
            DataGatewayIpVariable = "string",
            DataServiceIp = "string",
            DataServiceIpVariable = "string",
            DatabaseUrl = false,
            DatabaseUrlVariable = "string",
            InstanceId = "string",
            Nat = false,
            NatVariable = "string",
            Optional = false,
            ResourceProfile = "string",
            ResourceProfileVariable = "string",
            ServiceGatewayIp = "string",
            ServiceGatewayIpVariable = "string",
            ServiceIp = "string",
            ServiceIpVariable = "string",
        },
    },
});
example, err := sdwan.NewSecurityAppHostingFeatureTemplate(ctx, "securityAppHostingFeatureTemplateResource", &sdwan.SecurityAppHostingFeatureTemplateArgs{
	Description: pulumi.String("string"),
	DeviceTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name: pulumi.String("string"),
	VirtualApplications: sdwan.SecurityAppHostingFeatureTemplateVirtualApplicationArray{
		&sdwan.SecurityAppHostingFeatureTemplateVirtualApplicationArgs{
			ApplicationType:          pulumi.String("string"),
			DataGatewayIp:            pulumi.String("string"),
			DataGatewayIpVariable:    pulumi.String("string"),
			DataServiceIp:            pulumi.String("string"),
			DataServiceIpVariable:    pulumi.String("string"),
			DatabaseUrl:              pulumi.Bool(false),
			DatabaseUrlVariable:      pulumi.String("string"),
			InstanceId:               pulumi.String("string"),
			Nat:                      pulumi.Bool(false),
			NatVariable:              pulumi.String("string"),
			Optional:                 pulumi.Bool(false),
			ResourceProfile:          pulumi.String("string"),
			ResourceProfileVariable:  pulumi.String("string"),
			ServiceGatewayIp:         pulumi.String("string"),
			ServiceGatewayIpVariable: pulumi.String("string"),
			ServiceIp:                pulumi.String("string"),
			ServiceIpVariable:        pulumi.String("string"),
		},
	},
})
var securityAppHostingFeatureTemplateResource = new SecurityAppHostingFeatureTemplate("securityAppHostingFeatureTemplateResource", SecurityAppHostingFeatureTemplateArgs.builder()
    .description("string")
    .deviceTypes("string")
    .name("string")
    .virtualApplications(SecurityAppHostingFeatureTemplateVirtualApplicationArgs.builder()
        .applicationType("string")
        .dataGatewayIp("string")
        .dataGatewayIpVariable("string")
        .dataServiceIp("string")
        .dataServiceIpVariable("string")
        .databaseUrl(false)
        .databaseUrlVariable("string")
        .instanceId("string")
        .nat(false)
        .natVariable("string")
        .optional(false)
        .resourceProfile("string")
        .resourceProfileVariable("string")
        .serviceGatewayIp("string")
        .serviceGatewayIpVariable("string")
        .serviceIp("string")
        .serviceIpVariable("string")
        .build())
    .build());
security_app_hosting_feature_template_resource = sdwan.SecurityAppHostingFeatureTemplate("securityAppHostingFeatureTemplateResource",
    description="string",
    device_types=["string"],
    name="string",
    virtual_applications=[{
        "application_type": "string",
        "data_gateway_ip": "string",
        "data_gateway_ip_variable": "string",
        "data_service_ip": "string",
        "data_service_ip_variable": "string",
        "database_url": False,
        "database_url_variable": "string",
        "instance_id": "string",
        "nat": False,
        "nat_variable": "string",
        "optional": False,
        "resource_profile": "string",
        "resource_profile_variable": "string",
        "service_gateway_ip": "string",
        "service_gateway_ip_variable": "string",
        "service_ip": "string",
        "service_ip_variable": "string",
    }])
const securityAppHostingFeatureTemplateResource = new sdwan.SecurityAppHostingFeatureTemplate("securityAppHostingFeatureTemplateResource", {
    description: "string",
    deviceTypes: ["string"],
    name: "string",
    virtualApplications: [{
        applicationType: "string",
        dataGatewayIp: "string",
        dataGatewayIpVariable: "string",
        dataServiceIp: "string",
        dataServiceIpVariable: "string",
        databaseUrl: false,
        databaseUrlVariable: "string",
        instanceId: "string",
        nat: false,
        natVariable: "string",
        optional: false,
        resourceProfile: "string",
        resourceProfileVariable: "string",
        serviceGatewayIp: "string",
        serviceGatewayIpVariable: "string",
        serviceIp: "string",
        serviceIpVariable: "string",
    }],
});
type: sdwan:SecurityAppHostingFeatureTemplate
properties:
    description: string
    deviceTypes:
        - string
    name: string
    virtualApplications:
        - applicationType: string
          dataGatewayIp: string
          dataGatewayIpVariable: string
          dataServiceIp: string
          dataServiceIpVariable: string
          databaseUrl: false
          databaseUrlVariable: string
          instanceId: string
          nat: false
          natVariable: string
          optional: false
          resourceProfile: string
          resourceProfileVariable: string
          serviceGatewayIp: string
          serviceGatewayIpVariable: string
          serviceIp: string
          serviceIpVariable: string
SecurityAppHostingFeatureTemplate 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 SecurityAppHostingFeatureTemplate resource accepts the following input properties:
- Description string
- The description of the feature template
- DeviceTypes List<string>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- Name string
- The name of the feature template
- VirtualApplications List<SecurityApp Hosting Feature Template Virtual Application> 
- Virtual application Instance
- Description string
- The description of the feature template
- DeviceTypes []string
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- Name string
- The name of the feature template
- VirtualApplications []SecurityApp Hosting Feature Template Virtual Application Args 
- Virtual application Instance
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name String
- The name of the feature template
- virtualApplications List<SecurityApp Hosting Feature Template Virtual Application> 
- Virtual application Instance
- description string
- The description of the feature template
- deviceTypes string[]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name string
- The name of the feature template
- virtualApplications SecurityApp Hosting Feature Template Virtual Application[] 
- Virtual application Instance
- description str
- The description of the feature template
- device_types Sequence[str]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name str
- The name of the feature template
- virtual_applications Sequence[SecurityApp Hosting Feature Template Virtual Application Args] 
- Virtual application Instance
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name String
- The name of the feature template
- virtualApplications List<Property Map>
- Virtual application Instance
Outputs
All input properties are implicitly available as output properties. Additionally, the SecurityAppHostingFeatureTemplate resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- TemplateType string
- The template type
- Version int
- The version of the feature template
- Id string
- The provider-assigned unique ID for this managed resource.
- TemplateType string
- The template type
- Version int
- The version of the feature template
- id String
- The provider-assigned unique ID for this managed resource.
- templateType String
- The template type
- version Integer
- The version of the feature template
- id string
- The provider-assigned unique ID for this managed resource.
- templateType string
- The template type
- version number
- The version of the feature template
- id str
- The provider-assigned unique ID for this managed resource.
- template_type str
- The template type
- version int
- The version of the feature template
- id String
- The provider-assigned unique ID for this managed resource.
- templateType String
- The template type
- version Number
- The version of the feature template
Look up Existing SecurityAppHostingFeatureTemplate Resource
Get an existing SecurityAppHostingFeatureTemplate 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?: SecurityAppHostingFeatureTemplateState, opts?: CustomResourceOptions): SecurityAppHostingFeatureTemplate@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        device_types: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        template_type: Optional[str] = None,
        version: Optional[int] = None,
        virtual_applications: Optional[Sequence[SecurityAppHostingFeatureTemplateVirtualApplicationArgs]] = None) -> SecurityAppHostingFeatureTemplatefunc GetSecurityAppHostingFeatureTemplate(ctx *Context, name string, id IDInput, state *SecurityAppHostingFeatureTemplateState, opts ...ResourceOption) (*SecurityAppHostingFeatureTemplate, error)public static SecurityAppHostingFeatureTemplate Get(string name, Input<string> id, SecurityAppHostingFeatureTemplateState? state, CustomResourceOptions? opts = null)public static SecurityAppHostingFeatureTemplate get(String name, Output<String> id, SecurityAppHostingFeatureTemplateState state, CustomResourceOptions options)resources:  _:    type: sdwan:SecurityAppHostingFeatureTemplate    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 template
- DeviceTypes List<string>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- Name string
- The name of the feature template
- TemplateType string
- The template type
- Version int
- The version of the feature template
- VirtualApplications List<SecurityApp Hosting Feature Template Virtual Application> 
- Virtual application Instance
- Description string
- The description of the feature template
- DeviceTypes []string
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- Name string
- The name of the feature template
- TemplateType string
- The template type
- Version int
- The version of the feature template
- VirtualApplications []SecurityApp Hosting Feature Template Virtual Application Args 
- Virtual application Instance
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name String
- The name of the feature template
- templateType String
- The template type
- version Integer
- The version of the feature template
- virtualApplications List<SecurityApp Hosting Feature Template Virtual Application> 
- Virtual application Instance
- description string
- The description of the feature template
- deviceTypes string[]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name string
- The name of the feature template
- templateType string
- The template type
- version number
- The version of the feature template
- virtualApplications SecurityApp Hosting Feature Template Virtual Application[] 
- Virtual application Instance
- description str
- The description of the feature template
- device_types Sequence[str]
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name str
- The name of the feature template
- template_type str
- The template type
- version int
- The version of the feature template
- virtual_applications Sequence[SecurityApp Hosting Feature Template Virtual Application Args] 
- Virtual application Instance
- description String
- The description of the feature template
- deviceTypes List<String>
- List of supported device types - Choices: vedge-C8000V,vedge-C8300-1N1S-4T2X,vedge-C8300-1N1S-6T,vedge-C8300-2N2S-6T,vedge-C8300-2N2S-4T2X,vedge-C8500-12X4QC,vedge-C8500-12X,vedge-C8500-20X6C,vedge-C8500L-8S4X,vedge-C8200-1N-4T,vedge-C8200L-1N-4T
- name String
- The name of the feature template
- templateType String
- The template type
- version Number
- The version of the feature template
- virtualApplications List<Property Map>
- Virtual application Instance
Supporting Types
SecurityAppHostingFeatureTemplateVirtualApplication, SecurityAppHostingFeatureTemplateVirtualApplicationArgs              
- ApplicationType string
- List of Virtual applications- Choices: utd
- Default value: utd
 
- Choices: 
- DataGateway stringIp 
- Data Gateway IP- Default value: 192.0.2.1/24
 
- Default value: 
- DataGateway stringIp Variable 
- Variable name
- DataService stringIp 
- Data Service IP- Default value: 192.0.2.2/24
 
- Default value: 
- DataService stringIp Variable 
- Variable name
- DatabaseUrl bool
- Download URL Database on Device- Default value: false
 
- Default value: 
- DatabaseUrl stringVariable 
- Variable name
- InstanceId string
- List of Virtual applications- Default value: 1
 
- Default value: 
- Nat bool
- Is Nat enabled- Default value: true
 
- Default value: 
- NatVariable string
- Variable name
- Optional bool
- Indicates if list item is considered optional.
- ResourceProfile string
- Resource Profile- Choices: low,medium,high
- Default value: low
 
- Choices: 
- ResourceProfile stringVariable 
- Variable name
- ServiceGateway stringIp 
- Service Gateway IP (Management interface)
- ServiceGateway stringIp Variable 
- Variable name
- ServiceIp string
- Service IP
- ServiceIp stringVariable 
- Variable name
- ApplicationType string
- List of Virtual applications- Choices: utd
- Default value: utd
 
- Choices: 
- DataGateway stringIp 
- Data Gateway IP- Default value: 192.0.2.1/24
 
- Default value: 
- DataGateway stringIp Variable 
- Variable name
- DataService stringIp 
- Data Service IP- Default value: 192.0.2.2/24
 
- Default value: 
- DataService stringIp Variable 
- Variable name
- DatabaseUrl bool
- Download URL Database on Device- Default value: false
 
- Default value: 
- DatabaseUrl stringVariable 
- Variable name
- InstanceId string
- List of Virtual applications- Default value: 1
 
- Default value: 
- Nat bool
- Is Nat enabled- Default value: true
 
- Default value: 
- NatVariable string
- Variable name
- Optional bool
- Indicates if list item is considered optional.
- ResourceProfile string
- Resource Profile- Choices: low,medium,high
- Default value: low
 
- Choices: 
- ResourceProfile stringVariable 
- Variable name
- ServiceGateway stringIp 
- Service Gateway IP (Management interface)
- ServiceGateway stringIp Variable 
- Variable name
- ServiceIp string
- Service IP
- ServiceIp stringVariable 
- Variable name
- applicationType String
- List of Virtual applications- Choices: utd
- Default value: utd
 
- Choices: 
- dataGateway StringIp 
- Data Gateway IP- Default value: 192.0.2.1/24
 
- Default value: 
- dataGateway StringIp Variable 
- Variable name
- dataService StringIp 
- Data Service IP- Default value: 192.0.2.2/24
 
- Default value: 
- dataService StringIp Variable 
- Variable name
- databaseUrl Boolean
- Download URL Database on Device- Default value: false
 
- Default value: 
- databaseUrl StringVariable 
- Variable name
- instanceId String
- List of Virtual applications- Default value: 1
 
- Default value: 
- nat Boolean
- Is Nat enabled- Default value: true
 
- Default value: 
- natVariable String
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
- resourceProfile String
- Resource Profile- Choices: low,medium,high
- Default value: low
 
- Choices: 
- resourceProfile StringVariable 
- Variable name
- serviceGateway StringIp 
- Service Gateway IP (Management interface)
- serviceGateway StringIp Variable 
- Variable name
- serviceIp String
- Service IP
- serviceIp StringVariable 
- Variable name
- applicationType string
- List of Virtual applications- Choices: utd
- Default value: utd
 
- Choices: 
- dataGateway stringIp 
- Data Gateway IP- Default value: 192.0.2.1/24
 
- Default value: 
- dataGateway stringIp Variable 
- Variable name
- dataService stringIp 
- Data Service IP- Default value: 192.0.2.2/24
 
- Default value: 
- dataService stringIp Variable 
- Variable name
- databaseUrl boolean
- Download URL Database on Device- Default value: false
 
- Default value: 
- databaseUrl stringVariable 
- Variable name
- instanceId string
- List of Virtual applications- Default value: 1
 
- Default value: 
- nat boolean
- Is Nat enabled- Default value: true
 
- Default value: 
- natVariable string
- Variable name
- optional boolean
- Indicates if list item is considered optional.
- resourceProfile string
- Resource Profile- Choices: low,medium,high
- Default value: low
 
- Choices: 
- resourceProfile stringVariable 
- Variable name
- serviceGateway stringIp 
- Service Gateway IP (Management interface)
- serviceGateway stringIp Variable 
- Variable name
- serviceIp string
- Service IP
- serviceIp stringVariable 
- Variable name
- application_type str
- List of Virtual applications- Choices: utd
- Default value: utd
 
- Choices: 
- data_gateway_ strip 
- Data Gateway IP- Default value: 192.0.2.1/24
 
- Default value: 
- data_gateway_ strip_ variable 
- Variable name
- data_service_ strip 
- Data Service IP- Default value: 192.0.2.2/24
 
- Default value: 
- data_service_ strip_ variable 
- Variable name
- database_url bool
- Download URL Database on Device- Default value: false
 
- Default value: 
- database_url_ strvariable 
- Variable name
- instance_id str
- List of Virtual applications- Default value: 1
 
- Default value: 
- nat bool
- Is Nat enabled- Default value: true
 
- Default value: 
- nat_variable str
- Variable name
- optional bool
- Indicates if list item is considered optional.
- resource_profile str
- Resource Profile- Choices: low,medium,high
- Default value: low
 
- Choices: 
- resource_profile_ strvariable 
- Variable name
- service_gateway_ strip 
- Service Gateway IP (Management interface)
- service_gateway_ strip_ variable 
- Variable name
- service_ip str
- Service IP
- service_ip_ strvariable 
- Variable name
- applicationType String
- List of Virtual applications- Choices: utd
- Default value: utd
 
- Choices: 
- dataGateway StringIp 
- Data Gateway IP- Default value: 192.0.2.1/24
 
- Default value: 
- dataGateway StringIp Variable 
- Variable name
- dataService StringIp 
- Data Service IP- Default value: 192.0.2.2/24
 
- Default value: 
- dataService StringIp Variable 
- Variable name
- databaseUrl Boolean
- Download URL Database on Device- Default value: false
 
- Default value: 
- databaseUrl StringVariable 
- Variable name
- instanceId String
- List of Virtual applications- Default value: 1
 
- Default value: 
- nat Boolean
- Is Nat enabled- Default value: true
 
- Default value: 
- natVariable String
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
- resourceProfile String
- Resource Profile- Choices: low,medium,high
- Default value: low
 
- Choices: 
- resourceProfile StringVariable 
- Variable name
- serviceGateway StringIp 
- Service Gateway IP (Management interface)
- serviceGateway StringIp Variable 
- Variable name
- serviceIp String
- Service IP
- serviceIp StringVariable 
- Variable name
Import
$ pulumi import sdwan:index/securityAppHostingFeatureTemplate:SecurityAppHostingFeatureTemplate example "f6b2c44c-693c-4763-b010-895aa3d236bd"
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.
