1. Packages
  2. Cisco Catalyst SD-WAN
  3. API Docs
  4. SecurityAppHostingFeatureTemplate
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

sdwan.SecurityAppHostingFeatureTemplate

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

    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=[sdwan.SecurityAppHostingFeatureTemplateVirtualApplicationArgs(
            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

    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<SecurityAppHostingFeatureTemplateVirtualApplication>
    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 []SecurityAppHostingFeatureTemplateVirtualApplicationArgs
    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<SecurityAppHostingFeatureTemplateVirtualApplication>
    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 SecurityAppHostingFeatureTemplateVirtualApplication[]
    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[SecurityAppHostingFeatureTemplateVirtualApplicationArgs]
    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) -> 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.
    The following state arguments are supported:
    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<SecurityAppHostingFeatureTemplateVirtualApplication>
    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 []SecurityAppHostingFeatureTemplateVirtualApplicationArgs
    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<SecurityAppHostingFeatureTemplateVirtualApplication>
    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 SecurityAppHostingFeatureTemplateVirtualApplication[]
    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[SecurityAppHostingFeatureTemplateVirtualApplicationArgs]
    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
    DataGatewayIp string
    Data Gateway IP

    • Default value: 192.0.2.1/24
    DataGatewayIpVariable string
    Variable name
    DataServiceIp string
    Data Service IP

    • Default value: 192.0.2.2/24
    DataServiceIpVariable string
    Variable name
    DatabaseUrl bool
    Download URL Database on Device

    • Default value: false
    DatabaseUrlVariable string
    Variable name
    InstanceId string
    List of Virtual applications

    • Default value: 1
    Nat bool
    Is Nat enabled

    • Default value: true
    NatVariable string
    Variable name
    Optional bool
    Indicates if list item is considered optional.
    ResourceProfile string
    Resource Profile

    • Choices: low, medium, high
    • Default value: low
    ResourceProfileVariable string
    Variable name
    ServiceGatewayIp string
    Service Gateway IP (Management interface)
    ServiceGatewayIpVariable string
    Variable name
    ServiceIp string
    Service IP
    ServiceIpVariable string
    Variable name
    ApplicationType string
    List of Virtual applications

    • Choices: utd
    • Default value: utd
    DataGatewayIp string
    Data Gateway IP

    • Default value: 192.0.2.1/24
    DataGatewayIpVariable string
    Variable name
    DataServiceIp string
    Data Service IP

    • Default value: 192.0.2.2/24
    DataServiceIpVariable string
    Variable name
    DatabaseUrl bool
    Download URL Database on Device

    • Default value: false
    DatabaseUrlVariable string
    Variable name
    InstanceId string
    List of Virtual applications

    • Default value: 1
    Nat bool
    Is Nat enabled

    • Default value: true
    NatVariable string
    Variable name
    Optional bool
    Indicates if list item is considered optional.
    ResourceProfile string
    Resource Profile

    • Choices: low, medium, high
    • Default value: low
    ResourceProfileVariable string
    Variable name
    ServiceGatewayIp string
    Service Gateway IP (Management interface)
    ServiceGatewayIpVariable string
    Variable name
    ServiceIp string
    Service IP
    ServiceIpVariable string
    Variable name
    applicationType String
    List of Virtual applications

    • Choices: utd
    • Default value: utd
    dataGatewayIp String
    Data Gateway IP

    • Default value: 192.0.2.1/24
    dataGatewayIpVariable String
    Variable name
    dataServiceIp String
    Data Service IP

    • Default value: 192.0.2.2/24
    dataServiceIpVariable String
    Variable name
    databaseUrl Boolean
    Download URL Database on Device

    • Default value: false
    databaseUrlVariable String
    Variable name
    instanceId String
    List of Virtual applications

    • Default value: 1
    nat Boolean
    Is Nat enabled

    • Default value: true
    natVariable String
    Variable name
    optional Boolean
    Indicates if list item is considered optional.
    resourceProfile String
    Resource Profile

    • Choices: low, medium, high
    • Default value: low
    resourceProfileVariable String
    Variable name
    serviceGatewayIp String
    Service Gateway IP (Management interface)
    serviceGatewayIpVariable String
    Variable name
    serviceIp String
    Service IP
    serviceIpVariable String
    Variable name
    applicationType string
    List of Virtual applications

    • Choices: utd
    • Default value: utd
    dataGatewayIp string
    Data Gateway IP

    • Default value: 192.0.2.1/24
    dataGatewayIpVariable string
    Variable name
    dataServiceIp string
    Data Service IP

    • Default value: 192.0.2.2/24
    dataServiceIpVariable string
    Variable name
    databaseUrl boolean
    Download URL Database on Device

    • Default value: false
    databaseUrlVariable string
    Variable name
    instanceId string
    List of Virtual applications

    • Default value: 1
    nat boolean
    Is Nat enabled

    • Default value: true
    natVariable string
    Variable name
    optional boolean
    Indicates if list item is considered optional.
    resourceProfile string
    Resource Profile

    • Choices: low, medium, high
    • Default value: low
    resourceProfileVariable string
    Variable name
    serviceGatewayIp string
    Service Gateway IP (Management interface)
    serviceGatewayIpVariable string
    Variable name
    serviceIp string
    Service IP
    serviceIpVariable string
    Variable name
    application_type str
    List of Virtual applications

    • Choices: utd
    • Default value: utd
    data_gateway_ip str
    Data Gateway IP

    • Default value: 192.0.2.1/24
    data_gateway_ip_variable str
    Variable name
    data_service_ip str
    Data Service IP

    • Default value: 192.0.2.2/24
    data_service_ip_variable str
    Variable name
    database_url bool
    Download URL Database on Device

    • Default value: false
    database_url_variable str
    Variable name
    instance_id str
    List of Virtual applications

    • Default value: 1
    nat bool
    Is Nat enabled

    • Default value: true
    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
    resource_profile_variable str
    Variable name
    service_gateway_ip str
    Service Gateway IP (Management interface)
    service_gateway_ip_variable str
    Variable name
    service_ip str
    Service IP
    service_ip_variable str
    Variable name
    applicationType String
    List of Virtual applications

    • Choices: utd
    • Default value: utd
    dataGatewayIp String
    Data Gateway IP

    • Default value: 192.0.2.1/24
    dataGatewayIpVariable String
    Variable name
    dataServiceIp String
    Data Service IP

    • Default value: 192.0.2.2/24
    dataServiceIpVariable String
    Variable name
    databaseUrl Boolean
    Download URL Database on Device

    • Default value: false
    databaseUrlVariable String
    Variable name
    instanceId String
    List of Virtual applications

    • Default value: 1
    nat Boolean
    Is Nat enabled

    • Default value: true
    natVariable String
    Variable name
    optional Boolean
    Indicates if list item is considered optional.
    resourceProfile String
    Resource Profile

    • Choices: low, medium, high
    • Default value: low
    resourceProfileVariable String
    Variable name
    serviceGatewayIp String
    Service Gateway IP (Management interface)
    serviceGatewayIpVariable String
    Variable name
    serviceIp String
    Service IP
    serviceIpVariable String
    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.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi