1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectExtendercontrollerTemplate
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectExtendercontrollerTemplate

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    ObjectExtenderController Template

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectExtendercontrollerTemplate("trname", {description: "This is a Terraform example"});
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectExtendercontrollerTemplate("trname", description="This is a Terraform example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewObjectExtendercontrollerTemplate(ctx, "trname", &fortimanager.ObjectExtendercontrollerTemplateArgs{
    			Description: pulumi.String("This is a Terraform example"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortimanager.ObjectExtendercontrollerTemplate("trname", new()
        {
            Description = "This is a Terraform example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectExtendercontrollerTemplate;
    import com.pulumi.fortimanager.ObjectExtendercontrollerTemplateArgs;
    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 trname = new ObjectExtendercontrollerTemplate("trname", ObjectExtendercontrollerTemplateArgs.builder()
                .description("This is a Terraform example")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectExtendercontrollerTemplate
        properties:
          description: This is a Terraform example
    

    Create ObjectExtendercontrollerTemplate Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ObjectExtendercontrollerTemplate(name: string, args?: ObjectExtendercontrollerTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectExtendercontrollerTemplate(resource_name: str,
                                         args: Optional[ObjectExtendercontrollerTemplateArgs] = None,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectExtendercontrollerTemplate(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         adom: Optional[str] = None,
                                         dataplan: Optional[str] = None,
                                         description: Optional[str] = None,
                                         modem1_ifname: Optional[str] = None,
                                         modem1_sim_profile: Optional[str] = None,
                                         modem2_ifname: Optional[str] = None,
                                         modem2_sim_profile: Optional[str] = None,
                                         name: Optional[str] = None,
                                         object_extendercontroller_template_id: Optional[str] = None,
                                         scopetype: Optional[str] = None)
    func NewObjectExtendercontrollerTemplate(ctx *Context, name string, args *ObjectExtendercontrollerTemplateArgs, opts ...ResourceOption) (*ObjectExtendercontrollerTemplate, error)
    public ObjectExtendercontrollerTemplate(string name, ObjectExtendercontrollerTemplateArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectExtendercontrollerTemplate(String name, ObjectExtendercontrollerTemplateArgs args)
    public ObjectExtendercontrollerTemplate(String name, ObjectExtendercontrollerTemplateArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectExtendercontrollerTemplate
    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 ObjectExtendercontrollerTemplateArgs
    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 ObjectExtendercontrollerTemplateArgs
    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 ObjectExtendercontrollerTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectExtendercontrollerTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectExtendercontrollerTemplateArgs
    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 objectExtendercontrollerTemplateResource = new Fortimanager.ObjectExtendercontrollerTemplate("objectExtendercontrollerTemplateResource", new()
    {
        Adom = "string",
        Dataplan = "string",
        Description = "string",
        Modem1Ifname = "string",
        Modem1SimProfile = "string",
        Modem2Ifname = "string",
        Modem2SimProfile = "string",
        Name = "string",
        ObjectExtendercontrollerTemplateId = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectExtendercontrollerTemplate(ctx, "objectExtendercontrollerTemplateResource", &fortimanager.ObjectExtendercontrollerTemplateArgs{
    Adom: pulumi.String("string"),
    Dataplan: pulumi.String("string"),
    Description: pulumi.String("string"),
    Modem1Ifname: pulumi.String("string"),
    Modem1SimProfile: pulumi.String("string"),
    Modem2Ifname: pulumi.String("string"),
    Modem2SimProfile: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectExtendercontrollerTemplateId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectExtendercontrollerTemplateResource = new ObjectExtendercontrollerTemplate("objectExtendercontrollerTemplateResource", ObjectExtendercontrollerTemplateArgs.builder()
        .adom("string")
        .dataplan("string")
        .description("string")
        .modem1Ifname("string")
        .modem1SimProfile("string")
        .modem2Ifname("string")
        .modem2SimProfile("string")
        .name("string")
        .objectExtendercontrollerTemplateId("string")
        .scopetype("string")
        .build());
    
    object_extendercontroller_template_resource = fortimanager.ObjectExtendercontrollerTemplate("objectExtendercontrollerTemplateResource",
        adom="string",
        dataplan="string",
        description="string",
        modem1_ifname="string",
        modem1_sim_profile="string",
        modem2_ifname="string",
        modem2_sim_profile="string",
        name="string",
        object_extendercontroller_template_id="string",
        scopetype="string")
    
    const objectExtendercontrollerTemplateResource = new fortimanager.ObjectExtendercontrollerTemplate("objectExtendercontrollerTemplateResource", {
        adom: "string",
        dataplan: "string",
        description: "string",
        modem1Ifname: "string",
        modem1SimProfile: "string",
        modem2Ifname: "string",
        modem2SimProfile: "string",
        name: "string",
        objectExtendercontrollerTemplateId: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectExtendercontrollerTemplate
    properties:
        adom: string
        dataplan: string
        description: string
        modem1Ifname: string
        modem1SimProfile: string
        modem2Ifname: string
        modem2SimProfile: string
        name: string
        objectExtendercontrollerTemplateId: string
        scopetype: string
    

    ObjectExtendercontrollerTemplate 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 ObjectExtendercontrollerTemplate resource accepts the following input properties:

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Dataplan string
    Dataplan.
    Description string
    Description.
    Modem1Ifname string
    Modem1_Ifname.
    Modem1SimProfile string
    Modem1_Sim_Profile.
    Modem2Ifname string
    Modem2_Ifname.
    Modem2SimProfile string
    Modem2_Sim_Profile.
    Name string
    Name.
    ObjectExtendercontrollerTemplateId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Dataplan string
    Dataplan.
    Description string
    Description.
    Modem1Ifname string
    Modem1_Ifname.
    Modem1SimProfile string
    Modem1_Sim_Profile.
    Modem2Ifname string
    Modem2_Ifname.
    Modem2SimProfile string
    Modem2_Sim_Profile.
    Name string
    Name.
    ObjectExtendercontrollerTemplateId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan String
    Dataplan.
    description String
    Description.
    modem1Ifname String
    Modem1_Ifname.
    modem1SimProfile String
    Modem1_Sim_Profile.
    modem2Ifname String
    Modem2_Ifname.
    modem2SimProfile String
    Modem2_Sim_Profile.
    name String
    Name.
    objectExtendercontrollerTemplateId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan string
    Dataplan.
    description string
    Description.
    modem1Ifname string
    Modem1_Ifname.
    modem1SimProfile string
    Modem1_Sim_Profile.
    modem2Ifname string
    Modem2_Ifname.
    modem2SimProfile string
    Modem2_Sim_Profile.
    name string
    Name.
    objectExtendercontrollerTemplateId string
    an identifier for the resource with format {{name}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan str
    Dataplan.
    description str
    Description.
    modem1_ifname str
    Modem1_Ifname.
    modem1_sim_profile str
    Modem1_Sim_Profile.
    modem2_ifname str
    Modem2_Ifname.
    modem2_sim_profile str
    Modem2_Sim_Profile.
    name str
    Name.
    object_extendercontroller_template_id str
    an identifier for the resource with format {{name}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan String
    Dataplan.
    description String
    Description.
    modem1Ifname String
    Modem1_Ifname.
    modem1SimProfile String
    Modem1_Sim_Profile.
    modem2Ifname String
    Modem2_Ifname.
    modem2SimProfile String
    Modem2_Sim_Profile.
    name String
    Name.
    objectExtendercontrollerTemplateId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectExtendercontrollerTemplate resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ObjectExtendercontrollerTemplate Resource

    Get an existing ObjectExtendercontrollerTemplate 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?: ObjectExtendercontrollerTemplateState, opts?: CustomResourceOptions): ObjectExtendercontrollerTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            dataplan: Optional[str] = None,
            description: Optional[str] = None,
            modem1_ifname: Optional[str] = None,
            modem1_sim_profile: Optional[str] = None,
            modem2_ifname: Optional[str] = None,
            modem2_sim_profile: Optional[str] = None,
            name: Optional[str] = None,
            object_extendercontroller_template_id: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectExtendercontrollerTemplate
    func GetObjectExtendercontrollerTemplate(ctx *Context, name string, id IDInput, state *ObjectExtendercontrollerTemplateState, opts ...ResourceOption) (*ObjectExtendercontrollerTemplate, error)
    public static ObjectExtendercontrollerTemplate Get(string name, Input<string> id, ObjectExtendercontrollerTemplateState? state, CustomResourceOptions? opts = null)
    public static ObjectExtendercontrollerTemplate get(String name, Output<String> id, ObjectExtendercontrollerTemplateState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectExtendercontrollerTemplate    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.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Dataplan string
    Dataplan.
    Description string
    Description.
    Modem1Ifname string
    Modem1_Ifname.
    Modem1SimProfile string
    Modem1_Sim_Profile.
    Modem2Ifname string
    Modem2_Ifname.
    Modem2SimProfile string
    Modem2_Sim_Profile.
    Name string
    Name.
    ObjectExtendercontrollerTemplateId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Dataplan string
    Dataplan.
    Description string
    Description.
    Modem1Ifname string
    Modem1_Ifname.
    Modem1SimProfile string
    Modem1_Sim_Profile.
    Modem2Ifname string
    Modem2_Ifname.
    Modem2SimProfile string
    Modem2_Sim_Profile.
    Name string
    Name.
    ObjectExtendercontrollerTemplateId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan String
    Dataplan.
    description String
    Description.
    modem1Ifname String
    Modem1_Ifname.
    modem1SimProfile String
    Modem1_Sim_Profile.
    modem2Ifname String
    Modem2_Ifname.
    modem2SimProfile String
    Modem2_Sim_Profile.
    name String
    Name.
    objectExtendercontrollerTemplateId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan string
    Dataplan.
    description string
    Description.
    modem1Ifname string
    Modem1_Ifname.
    modem1SimProfile string
    Modem1_Sim_Profile.
    modem2Ifname string
    Modem2_Ifname.
    modem2SimProfile string
    Modem2_Sim_Profile.
    name string
    Name.
    objectExtendercontrollerTemplateId string
    an identifier for the resource with format {{name}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan str
    Dataplan.
    description str
    Description.
    modem1_ifname str
    Modem1_Ifname.
    modem1_sim_profile str
    Modem1_Sim_Profile.
    modem2_ifname str
    Modem2_Ifname.
    modem2_sim_profile str
    Modem2_Sim_Profile.
    name str
    Name.
    object_extendercontroller_template_id str
    an identifier for the resource with format {{name}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dataplan String
    Dataplan.
    description String
    Description.
    modem1Ifname String
    Modem1_Ifname.
    modem1SimProfile String
    Modem1_Sim_Profile.
    modem2Ifname String
    Modem2_Ifname.
    modem2SimProfile String
    Modem2_Sim_Profile.
    name String
    Name.
    objectExtendercontrollerTemplateId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.

    Import

    ObjectExtenderController Template can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectExtendercontrollerTemplate:ObjectExtendercontrollerTemplate labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev