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

fortimanager.ObjectSystemSdnconnectorForwardingrule

Explore with Pulumi AI

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

    Configure GCP forwarding rule.

    This resource is a sub resource for variable forwarding_rule of resource fortimanager.ObjectSystemSdnconnector. Conflict and overwrite may occur if use both of them.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectSystemSdnconnector = new fortimanager.ObjectSystemSdnconnector("trnameObjectSystemSdnconnector", {
        accessKey: "key",
        region: "local",
    });
    const trnameObjectSystemSdnconnectorForwardingrule = new fortimanager.ObjectSystemSdnconnectorForwardingrule("trnameObjectSystemSdnconnectorForwardingrule", {
        sdnConnector: trnameObjectSystemSdnconnector.name,
        ruleName: "terr-forwardingrule",
    }, {
        dependsOn: [trnameObjectSystemSdnconnector],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_system_sdnconnector = fortimanager.ObjectSystemSdnconnector("trnameObjectSystemSdnconnector",
        access_key="key",
        region="local")
    trname_object_system_sdnconnector_forwardingrule = fortimanager.ObjectSystemSdnconnectorForwardingrule("trnameObjectSystemSdnconnectorForwardingrule",
        sdn_connector=trname_object_system_sdnconnector.name,
        rule_name="terr-forwardingrule",
        opts = pulumi.ResourceOptions(depends_on=[trname_object_system_sdnconnector]))
    
    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 {
    		trnameObjectSystemSdnconnector, err := fortimanager.NewObjectSystemSdnconnector(ctx, "trnameObjectSystemSdnconnector", &fortimanager.ObjectSystemSdnconnectorArgs{
    			AccessKey: pulumi.String("key"),
    			Region:    pulumi.String("local"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectSystemSdnconnectorForwardingrule(ctx, "trnameObjectSystemSdnconnectorForwardingrule", &fortimanager.ObjectSystemSdnconnectorForwardingruleArgs{
    			SdnConnector: trnameObjectSystemSdnconnector.Name,
    			RuleName:     pulumi.String("terr-forwardingrule"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectSystemSdnconnector,
    		}))
    		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 trnameObjectSystemSdnconnector = new Fortimanager.ObjectSystemSdnconnector("trnameObjectSystemSdnconnector", new()
        {
            AccessKey = "key",
            Region = "local",
        });
    
        var trnameObjectSystemSdnconnectorForwardingrule = new Fortimanager.ObjectSystemSdnconnectorForwardingrule("trnameObjectSystemSdnconnectorForwardingrule", new()
        {
            SdnConnector = trnameObjectSystemSdnconnector.Name,
            RuleName = "terr-forwardingrule",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectSystemSdnconnector,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectSystemSdnconnector;
    import com.pulumi.fortimanager.ObjectSystemSdnconnectorArgs;
    import com.pulumi.fortimanager.ObjectSystemSdnconnectorForwardingrule;
    import com.pulumi.fortimanager.ObjectSystemSdnconnectorForwardingruleArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trnameObjectSystemSdnconnector = new ObjectSystemSdnconnector("trnameObjectSystemSdnconnector", ObjectSystemSdnconnectorArgs.builder()
                .accessKey("key")
                .region("local")
                .build());
    
            var trnameObjectSystemSdnconnectorForwardingrule = new ObjectSystemSdnconnectorForwardingrule("trnameObjectSystemSdnconnectorForwardingrule", ObjectSystemSdnconnectorForwardingruleArgs.builder()
                .sdnConnector(trnameObjectSystemSdnconnector.name())
                .ruleName("terr-forwardingrule")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectSystemSdnconnector)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectSystemSdnconnectorForwardingrule:
        type: fortimanager:ObjectSystemSdnconnectorForwardingrule
        properties:
          sdnConnector: ${trnameObjectSystemSdnconnector.name}
          ruleName: terr-forwardingrule
        options:
          dependsOn:
            - ${trnameObjectSystemSdnconnector}
      trnameObjectSystemSdnconnector:
        type: fortimanager:ObjectSystemSdnconnector
        properties:
          accessKey: key
          region: local
    

    Create ObjectSystemSdnconnectorForwardingrule Resource

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

    Constructor syntax

    new ObjectSystemSdnconnectorForwardingrule(name: string, args: ObjectSystemSdnconnectorForwardingruleArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectSystemSdnconnectorForwardingrule(resource_name: str,
                                               args: ObjectSystemSdnconnectorForwardingruleArgs,
                                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectSystemSdnconnectorForwardingrule(resource_name: str,
                                               opts: Optional[ResourceOptions] = None,
                                               sdn_connector: Optional[str] = None,
                                               adom: Optional[str] = None,
                                               object_system_sdnconnector_forwardingrule_id: Optional[str] = None,
                                               rule_name: Optional[str] = None,
                                               scopetype: Optional[str] = None,
                                               target: Optional[str] = None)
    func NewObjectSystemSdnconnectorForwardingrule(ctx *Context, name string, args ObjectSystemSdnconnectorForwardingruleArgs, opts ...ResourceOption) (*ObjectSystemSdnconnectorForwardingrule, error)
    public ObjectSystemSdnconnectorForwardingrule(string name, ObjectSystemSdnconnectorForwardingruleArgs args, CustomResourceOptions? opts = null)
    public ObjectSystemSdnconnectorForwardingrule(String name, ObjectSystemSdnconnectorForwardingruleArgs args)
    public ObjectSystemSdnconnectorForwardingrule(String name, ObjectSystemSdnconnectorForwardingruleArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectSystemSdnconnectorForwardingrule
    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 ObjectSystemSdnconnectorForwardingruleArgs
    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 ObjectSystemSdnconnectorForwardingruleArgs
    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 ObjectSystemSdnconnectorForwardingruleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectSystemSdnconnectorForwardingruleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectSystemSdnconnectorForwardingruleArgs
    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 objectSystemSdnconnectorForwardingruleResource = new Fortimanager.ObjectSystemSdnconnectorForwardingrule("objectSystemSdnconnectorForwardingruleResource", new()
    {
        SdnConnector = "string",
        Adom = "string",
        ObjectSystemSdnconnectorForwardingruleId = "string",
        RuleName = "string",
        Scopetype = "string",
        Target = "string",
    });
    
    example, err := fortimanager.NewObjectSystemSdnconnectorForwardingrule(ctx, "objectSystemSdnconnectorForwardingruleResource", &fortimanager.ObjectSystemSdnconnectorForwardingruleArgs{
    SdnConnector: pulumi.String("string"),
    Adom: pulumi.String("string"),
    ObjectSystemSdnconnectorForwardingruleId: pulumi.String("string"),
    RuleName: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Target: pulumi.String("string"),
    })
    
    var objectSystemSdnconnectorForwardingruleResource = new ObjectSystemSdnconnectorForwardingrule("objectSystemSdnconnectorForwardingruleResource", ObjectSystemSdnconnectorForwardingruleArgs.builder()
        .sdnConnector("string")
        .adom("string")
        .objectSystemSdnconnectorForwardingruleId("string")
        .ruleName("string")
        .scopetype("string")
        .target("string")
        .build());
    
    object_system_sdnconnector_forwardingrule_resource = fortimanager.ObjectSystemSdnconnectorForwardingrule("objectSystemSdnconnectorForwardingruleResource",
        sdn_connector="string",
        adom="string",
        object_system_sdnconnector_forwardingrule_id="string",
        rule_name="string",
        scopetype="string",
        target="string")
    
    const objectSystemSdnconnectorForwardingruleResource = new fortimanager.ObjectSystemSdnconnectorForwardingrule("objectSystemSdnconnectorForwardingruleResource", {
        sdnConnector: "string",
        adom: "string",
        objectSystemSdnconnectorForwardingruleId: "string",
        ruleName: "string",
        scopetype: "string",
        target: "string",
    });
    
    type: fortimanager:ObjectSystemSdnconnectorForwardingrule
    properties:
        adom: string
        objectSystemSdnconnectorForwardingruleId: string
        ruleName: string
        scopetype: string
        sdnConnector: string
        target: string
    

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

    SdnConnector string
    Sdn Connector.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ObjectSystemSdnconnectorForwardingruleId string
    an identifier for the resource with format {{rule_name}}.
    RuleName string
    Forwarding rule 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.
    Target string
    Target instance name.
    SdnConnector string
    Sdn Connector.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ObjectSystemSdnconnectorForwardingruleId string
    an identifier for the resource with format {{rule_name}}.
    RuleName string
    Forwarding rule 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.
    Target string
    Target instance name.
    sdnConnector String
    Sdn Connector.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    objectSystemSdnconnectorForwardingruleId String
    an identifier for the resource with format {{rule_name}}.
    ruleName String
    Forwarding rule 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.
    target String
    Target instance name.
    sdnConnector string
    Sdn Connector.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    objectSystemSdnconnectorForwardingruleId string
    an identifier for the resource with format {{rule_name}}.
    ruleName string
    Forwarding rule 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.
    target string
    Target instance name.
    sdn_connector str
    Sdn Connector.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    object_system_sdnconnector_forwardingrule_id str
    an identifier for the resource with format {{rule_name}}.
    rule_name str
    Forwarding rule 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.
    target str
    Target instance name.
    sdnConnector String
    Sdn Connector.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    objectSystemSdnconnectorForwardingruleId String
    an identifier for the resource with format {{rule_name}}.
    ruleName String
    Forwarding rule 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.
    target String
    Target instance name.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectSystemSdnconnectorForwardingrule 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 ObjectSystemSdnconnectorForwardingrule Resource

    Get an existing ObjectSystemSdnconnectorForwardingrule 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?: ObjectSystemSdnconnectorForwardingruleState, opts?: CustomResourceOptions): ObjectSystemSdnconnectorForwardingrule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            object_system_sdnconnector_forwardingrule_id: Optional[str] = None,
            rule_name: Optional[str] = None,
            scopetype: Optional[str] = None,
            sdn_connector: Optional[str] = None,
            target: Optional[str] = None) -> ObjectSystemSdnconnectorForwardingrule
    func GetObjectSystemSdnconnectorForwardingrule(ctx *Context, name string, id IDInput, state *ObjectSystemSdnconnectorForwardingruleState, opts ...ResourceOption) (*ObjectSystemSdnconnectorForwardingrule, error)
    public static ObjectSystemSdnconnectorForwardingrule Get(string name, Input<string> id, ObjectSystemSdnconnectorForwardingruleState? state, CustomResourceOptions? opts = null)
    public static ObjectSystemSdnconnectorForwardingrule get(String name, Output<String> id, ObjectSystemSdnconnectorForwardingruleState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectSystemSdnconnectorForwardingrule    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.
    ObjectSystemSdnconnectorForwardingruleId string
    an identifier for the resource with format {{rule_name}}.
    RuleName string
    Forwarding rule 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.
    SdnConnector string
    Sdn Connector.
    Target string
    Target instance name.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ObjectSystemSdnconnectorForwardingruleId string
    an identifier for the resource with format {{rule_name}}.
    RuleName string
    Forwarding rule 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.
    SdnConnector string
    Sdn Connector.
    Target string
    Target instance name.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    objectSystemSdnconnectorForwardingruleId String
    an identifier for the resource with format {{rule_name}}.
    ruleName String
    Forwarding rule 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.
    sdnConnector String
    Sdn Connector.
    target String
    Target instance name.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    objectSystemSdnconnectorForwardingruleId string
    an identifier for the resource with format {{rule_name}}.
    ruleName string
    Forwarding rule 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.
    sdnConnector string
    Sdn Connector.
    target string
    Target instance name.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    object_system_sdnconnector_forwardingrule_id str
    an identifier for the resource with format {{rule_name}}.
    rule_name str
    Forwarding rule 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.
    sdn_connector str
    Sdn Connector.
    target str
    Target instance name.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    objectSystemSdnconnectorForwardingruleId String
    an identifier for the resource with format {{rule_name}}.
    ruleName String
    Forwarding rule 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.
    sdnConnector String
    Sdn Connector.
    target String
    Target instance name.

    Import

    ObjectSystem SdnConnectorForwardingRule can be imported using any of these accepted formats:

    Set import_options = [“sdn_connector=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectSystemSdnconnectorForwardingrule:ObjectSystemSdnconnectorForwardingrule labelname {{rule_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