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
- Device
Types 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
- Virtual
Applications List<SecurityApp Hosting Feature Template Virtual Application> - Virtual application Instance
- Description string
- The description of the feature template
- Device
Types []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
- Virtual
Applications []SecurityApp Hosting Feature Template Virtual Application Args - Virtual application Instance
- description String
- The description of the feature template
- device
Types 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
- virtual
Applications List<SecurityApp Hosting Feature Template Virtual Application> - Virtual application Instance
- description string
- The description of the feature template
- device
Types 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
- virtual
Applications 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
- device
Types 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
- virtual
Applications 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.
- Template
Type string - The template type
- Version int
- The version of the feature template
- Id string
- The provider-assigned unique ID for this managed resource.
- Template
Type string - The template type
- Version int
- The version of the feature template
- id String
- The provider-assigned unique ID for this managed resource.
- template
Type String - The template type
- version Integer
- The version of the feature template
- id string
- The provider-assigned unique ID for this managed resource.
- template
Type 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.
- template
Type 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) -> SecurityAppHostingFeatureTemplate
func 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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Description string
- The description of the feature template
- Device
Types 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
- Template
Type string - The template type
- Version int
- The version of the feature template
- Virtual
Applications List<SecurityApp Hosting Feature Template Virtual Application> - Virtual application Instance
- Description string
- The description of the feature template
- Device
Types []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
- Template
Type string - The template type
- Version int
- The version of the feature template
- Virtual
Applications []SecurityApp Hosting Feature Template Virtual Application Args - Virtual application Instance
- description String
- The description of the feature template
- device
Types 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
- template
Type String - The template type
- version Integer
- The version of the feature template
- virtual
Applications List<SecurityApp Hosting Feature Template Virtual Application> - Virtual application Instance
- description string
- The description of the feature template
- device
Types 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
- template
Type string - The template type
- version number
- The version of the feature template
- virtual
Applications 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
- device
Types 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
- template
Type String - The template type
- version Number
- The version of the feature template
- virtual
Applications List<Property Map> - Virtual application Instance
Supporting Types
SecurityAppHostingFeatureTemplateVirtualApplication, SecurityAppHostingFeatureTemplateVirtualApplicationArgs
- Application
Type string - List of Virtual applications
- Choices:
utd
- Default value:
utd
- Choices:
- Data
Gateway stringIp - Data Gateway IP
- Default value:
192.0.2.1/24
- Default value:
- Data
Gateway stringIp Variable - Variable name
- Data
Service stringIp - Data Service IP
- Default value:
192.0.2.2/24
- Default value:
- Data
Service stringIp Variable - Variable name
- Database
Url bool - Download URL Database on Device
- Default value:
false
- Default value:
- Database
Url stringVariable - Variable name
- Instance
Id string - List of Virtual applications
- Default value:
1
- Default value:
- Nat bool
- Is Nat enabled
- Default value:
true
- Default value:
- Nat
Variable string - Variable name
- Optional bool
- Indicates if list item is considered optional.
- Resource
Profile string - Resource Profile
- Choices:
low
,medium
,high
- Default value:
low
- Choices:
- Resource
Profile stringVariable - Variable name
- Service
Gateway stringIp - Service Gateway IP (Management interface)
- Service
Gateway stringIp Variable - Variable name
- Service
Ip string - Service IP
- Service
Ip stringVariable - Variable name
- Application
Type string - List of Virtual applications
- Choices:
utd
- Default value:
utd
- Choices:
- Data
Gateway stringIp - Data Gateway IP
- Default value:
192.0.2.1/24
- Default value:
- Data
Gateway stringIp Variable - Variable name
- Data
Service stringIp - Data Service IP
- Default value:
192.0.2.2/24
- Default value:
- Data
Service stringIp Variable - Variable name
- Database
Url bool - Download URL Database on Device
- Default value:
false
- Default value:
- Database
Url stringVariable - Variable name
- Instance
Id string - List of Virtual applications
- Default value:
1
- Default value:
- Nat bool
- Is Nat enabled
- Default value:
true
- Default value:
- Nat
Variable string - Variable name
- Optional bool
- Indicates if list item is considered optional.
- Resource
Profile string - Resource Profile
- Choices:
low
,medium
,high
- Default value:
low
- Choices:
- Resource
Profile stringVariable - Variable name
- Service
Gateway stringIp - Service Gateway IP (Management interface)
- Service
Gateway stringIp Variable - Variable name
- Service
Ip string - Service IP
- Service
Ip stringVariable - Variable name
- application
Type String - List of Virtual applications
- Choices:
utd
- Default value:
utd
- Choices:
- data
Gateway StringIp - Data Gateway IP
- Default value:
192.0.2.1/24
- Default value:
- data
Gateway StringIp Variable - Variable name
- data
Service StringIp - Data Service IP
- Default value:
192.0.2.2/24
- Default value:
- data
Service StringIp Variable - Variable name
- database
Url Boolean - Download URL Database on Device
- Default value:
false
- Default value:
- database
Url StringVariable - Variable name
- instance
Id String - List of Virtual applications
- Default value:
1
- Default value:
- nat Boolean
- Is Nat enabled
- Default value:
true
- Default value:
- nat
Variable String - Variable name
- optional Boolean
- Indicates if list item is considered optional.
- resource
Profile String - Resource Profile
- Choices:
low
,medium
,high
- Default value:
low
- Choices:
- resource
Profile StringVariable - Variable name
- service
Gateway StringIp - Service Gateway IP (Management interface)
- service
Gateway StringIp Variable - Variable name
- service
Ip String - Service IP
- service
Ip StringVariable - Variable name
- application
Type string - List of Virtual applications
- Choices:
utd
- Default value:
utd
- Choices:
- data
Gateway stringIp - Data Gateway IP
- Default value:
192.0.2.1/24
- Default value:
- data
Gateway stringIp Variable - Variable name
- data
Service stringIp - Data Service IP
- Default value:
192.0.2.2/24
- Default value:
- data
Service stringIp Variable - Variable name
- database
Url boolean - Download URL Database on Device
- Default value:
false
- Default value:
- database
Url stringVariable - Variable name
- instance
Id string - List of Virtual applications
- Default value:
1
- Default value:
- nat boolean
- Is Nat enabled
- Default value:
true
- Default value:
- nat
Variable string - Variable name
- optional boolean
- Indicates if list item is considered optional.
- resource
Profile string - Resource Profile
- Choices:
low
,medium
,high
- Default value:
low
- Choices:
- resource
Profile stringVariable - Variable name
- service
Gateway stringIp - Service Gateway IP (Management interface)
- service
Gateway stringIp Variable - Variable name
- service
Ip string - Service IP
- service
Ip 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
- application
Type String - List of Virtual applications
- Choices:
utd
- Default value:
utd
- Choices:
- data
Gateway StringIp - Data Gateway IP
- Default value:
192.0.2.1/24
- Default value:
- data
Gateway StringIp Variable - Variable name
- data
Service StringIp - Data Service IP
- Default value:
192.0.2.2/24
- Default value:
- data
Service StringIp Variable - Variable name
- database
Url Boolean - Download URL Database on Device
- Default value:
false
- Default value:
- database
Url StringVariable - Variable name
- instance
Id String - List of Virtual applications
- Default value:
1
- Default value:
- nat Boolean
- Is Nat enabled
- Default value:
true
- Default value:
- nat
Variable String - Variable name
- optional Boolean
- Indicates if list item is considered optional.
- resource
Profile String - Resource Profile
- Choices:
low
,medium
,high
- Default value:
low
- Choices:
- resource
Profile StringVariable - Variable name
- service
Gateway StringIp - Service Gateway IP (Management interface)
- service
Gateway StringIp Variable - Variable name
- service
Ip String - Service IP
- service
Ip 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
sdwan
Terraform Provider.