fortimanager.ObjectExtendercontrollerExtenderprofileCellularControllerreport
Explore with Pulumi AI
FortiExtender controller report configuration.
This resource is a sub resource for variable
controller_report
of resourcefortimanager.ObjectExtendercontrollerExtenderprofileCellular
. 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 trnameObjectExtendercontrollerExtenderprofile = new fortimanager.ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile", {});
const trnameObjectExtendercontrollerExtenderprofileCellularControllerreport = new fortimanager.ObjectExtendercontrollerExtenderprofileCellularControllerreport("trnameObjectExtendercontrollerExtenderprofileCellularControllerreport", {
interval: 12,
signalThreshold: 40,
status: "disable",
extenderProfile: trnameObjectExtendercontrollerExtenderprofile.name,
}, {
dependsOn: [trnameObjectExtendercontrollerExtenderprofile],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_extendercontroller_extenderprofile = fortimanager.ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile")
trname_object_extendercontroller_extenderprofile_cellular_controllerreport = fortimanager.ObjectExtendercontrollerExtenderprofileCellularControllerreport("trnameObjectExtendercontrollerExtenderprofileCellularControllerreport",
interval=12,
signal_threshold=40,
status="disable",
extender_profile=trname_object_extendercontroller_extenderprofile.name,
opts = pulumi.ResourceOptions(depends_on=[trname_object_extendercontroller_extenderprofile]))
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 {
trnameObjectExtendercontrollerExtenderprofile, err := fortimanager.NewObjectExtendercontrollerExtenderprofile(ctx, "trnameObjectExtendercontrollerExtenderprofile", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectExtendercontrollerExtenderprofileCellularControllerreport(ctx, "trnameObjectExtendercontrollerExtenderprofileCellularControllerreport", &fortimanager.ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs{
Interval: pulumi.Float64(12),
SignalThreshold: pulumi.Float64(40),
Status: pulumi.String("disable"),
ExtenderProfile: trnameObjectExtendercontrollerExtenderprofile.Name,
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectExtendercontrollerExtenderprofile,
}))
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 trnameObjectExtendercontrollerExtenderprofile = new Fortimanager.ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile");
var trnameObjectExtendercontrollerExtenderprofileCellularControllerreport = new Fortimanager.ObjectExtendercontrollerExtenderprofileCellularControllerreport("trnameObjectExtendercontrollerExtenderprofileCellularControllerreport", new()
{
Interval = 12,
SignalThreshold = 40,
Status = "disable",
ExtenderProfile = trnameObjectExtendercontrollerExtenderprofile.Name,
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectExtendercontrollerExtenderprofile,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofile;
import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofileCellularControllerreport;
import com.pulumi.fortimanager.ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs;
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 trnameObjectExtendercontrollerExtenderprofile = new ObjectExtendercontrollerExtenderprofile("trnameObjectExtendercontrollerExtenderprofile");
var trnameObjectExtendercontrollerExtenderprofileCellularControllerreport = new ObjectExtendercontrollerExtenderprofileCellularControllerreport("trnameObjectExtendercontrollerExtenderprofileCellularControllerreport", ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs.builder()
.interval(12)
.signalThreshold(40)
.status("disable")
.extenderProfile(trnameObjectExtendercontrollerExtenderprofile.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectExtendercontrollerExtenderprofile)
.build());
}
}
resources:
trnameObjectExtendercontrollerExtenderprofileCellularControllerreport:
type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularControllerreport
properties:
interval: 12
signalThreshold: 40
status: disable
extenderProfile: ${trnameObjectExtendercontrollerExtenderprofile.name}
options:
dependsOn:
- ${trnameObjectExtendercontrollerExtenderprofile}
trnameObjectExtendercontrollerExtenderprofile:
type: fortimanager:ObjectExtendercontrollerExtenderprofile
Create ObjectExtendercontrollerExtenderprofileCellularControllerreport Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectExtendercontrollerExtenderprofileCellularControllerreport(name: string, args: ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs, opts?: CustomResourceOptions);
@overload
def ObjectExtendercontrollerExtenderprofileCellularControllerreport(resource_name: str,
args: ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectExtendercontrollerExtenderprofileCellularControllerreport(resource_name: str,
opts: Optional[ResourceOptions] = None,
extender_profile: Optional[str] = None,
adom: Optional[str] = None,
interval: Optional[float] = None,
object_extendercontroller_extenderprofile_cellular_controllerreport_id: Optional[str] = None,
scopetype: Optional[str] = None,
signal_threshold: Optional[float] = None,
status: Optional[str] = None)
func NewObjectExtendercontrollerExtenderprofileCellularControllerreport(ctx *Context, name string, args ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofileCellularControllerreport, error)
public ObjectExtendercontrollerExtenderprofileCellularControllerreport(string name, ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs args, CustomResourceOptions? opts = null)
public ObjectExtendercontrollerExtenderprofileCellularControllerreport(String name, ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs args)
public ObjectExtendercontrollerExtenderprofileCellularControllerreport(String name, ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs args, CustomResourceOptions options)
type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularControllerreport
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 ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs
- 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 ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs
- 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 ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs
- 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 objectExtendercontrollerExtenderprofileCellularControllerreportResource = new Fortimanager.ObjectExtendercontrollerExtenderprofileCellularControllerreport("objectExtendercontrollerExtenderprofileCellularControllerreportResource", new()
{
ExtenderProfile = "string",
Adom = "string",
Interval = 0,
ObjectExtendercontrollerExtenderprofileCellularControllerreportId = "string",
Scopetype = "string",
SignalThreshold = 0,
Status = "string",
});
example, err := fortimanager.NewObjectExtendercontrollerExtenderprofileCellularControllerreport(ctx, "objectExtendercontrollerExtenderprofileCellularControllerreportResource", &fortimanager.ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs{
ExtenderProfile: pulumi.String("string"),
Adom: pulumi.String("string"),
Interval: pulumi.Float64(0),
ObjectExtendercontrollerExtenderprofileCellularControllerreportId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
SignalThreshold: pulumi.Float64(0),
Status: pulumi.String("string"),
})
var objectExtendercontrollerExtenderprofileCellularControllerreportResource = new ObjectExtendercontrollerExtenderprofileCellularControllerreport("objectExtendercontrollerExtenderprofileCellularControllerreportResource", ObjectExtendercontrollerExtenderprofileCellularControllerreportArgs.builder()
.extenderProfile("string")
.adom("string")
.interval(0)
.objectExtendercontrollerExtenderprofileCellularControllerreportId("string")
.scopetype("string")
.signalThreshold(0)
.status("string")
.build());
object_extendercontroller_extenderprofile_cellular_controllerreport_resource = fortimanager.ObjectExtendercontrollerExtenderprofileCellularControllerreport("objectExtendercontrollerExtenderprofileCellularControllerreportResource",
extender_profile="string",
adom="string",
interval=0,
object_extendercontroller_extenderprofile_cellular_controllerreport_id="string",
scopetype="string",
signal_threshold=0,
status="string")
const objectExtendercontrollerExtenderprofileCellularControllerreportResource = new fortimanager.ObjectExtendercontrollerExtenderprofileCellularControllerreport("objectExtendercontrollerExtenderprofileCellularControllerreportResource", {
extenderProfile: "string",
adom: "string",
interval: 0,
objectExtendercontrollerExtenderprofileCellularControllerreportId: "string",
scopetype: "string",
signalThreshold: 0,
status: "string",
});
type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularControllerreport
properties:
adom: string
extenderProfile: string
interval: 0
objectExtendercontrollerExtenderprofileCellularControllerreportId: string
scopetype: string
signalThreshold: 0
status: string
ObjectExtendercontrollerExtenderprofileCellularControllerreport 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 ObjectExtendercontrollerExtenderprofileCellularControllerreport resource accepts the following input properties:
- Extender
Profile string - Extender Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Interval double
- Controller report interval.
- Object
Extendercontroller stringExtenderprofile Cellular Controllerreport Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Signal
Threshold double - Controller report signal threshold.
- Status string
- FortiExtender controller report status. Valid values:
disable
,enable
.
- Extender
Profile string - Extender Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Interval float64
- Controller report interval.
- Object
Extendercontroller stringExtenderprofile Cellular Controllerreport Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Signal
Threshold float64 - Controller report signal threshold.
- Status string
- FortiExtender controller report status. Valid values:
disable
,enable
.
- extender
Profile String - Extender Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - interval Double
- Controller report interval.
- object
Extendercontroller StringExtenderprofile Cellular Controllerreport Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal
Threshold Double - Controller report signal threshold.
- status String
- FortiExtender controller report status. Valid values:
disable
,enable
.
- extender
Profile string - Extender Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - interval number
- Controller report interval.
- object
Extendercontroller stringExtenderprofile Cellular Controllerreport Id - an identifier for the resource.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal
Threshold number - Controller report signal threshold.
- status string
- FortiExtender controller report status. Valid values:
disable
,enable
.
- extender_
profile str - Extender Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - interval float
- Controller report interval.
- object_
extendercontroller_ strextenderprofile_ cellular_ controllerreport_ id - an identifier for the resource.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal_
threshold float - Controller report signal threshold.
- status str
- FortiExtender controller report status. Valid values:
disable
,enable
.
- extender
Profile String - Extender Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - interval Number
- Controller report interval.
- object
Extendercontroller StringExtenderprofile Cellular Controllerreport Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal
Threshold Number - Controller report signal threshold.
- status String
- FortiExtender controller report status. Valid values:
disable
,enable
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectExtendercontrollerExtenderprofileCellularControllerreport 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 ObjectExtendercontrollerExtenderprofileCellularControllerreport Resource
Get an existing ObjectExtendercontrollerExtenderprofileCellularControllerreport 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?: ObjectExtendercontrollerExtenderprofileCellularControllerreportState, opts?: CustomResourceOptions): ObjectExtendercontrollerExtenderprofileCellularControllerreport
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
extender_profile: Optional[str] = None,
interval: Optional[float] = None,
object_extendercontroller_extenderprofile_cellular_controllerreport_id: Optional[str] = None,
scopetype: Optional[str] = None,
signal_threshold: Optional[float] = None,
status: Optional[str] = None) -> ObjectExtendercontrollerExtenderprofileCellularControllerreport
func GetObjectExtendercontrollerExtenderprofileCellularControllerreport(ctx *Context, name string, id IDInput, state *ObjectExtendercontrollerExtenderprofileCellularControllerreportState, opts ...ResourceOption) (*ObjectExtendercontrollerExtenderprofileCellularControllerreport, error)
public static ObjectExtendercontrollerExtenderprofileCellularControllerreport Get(string name, Input<string> id, ObjectExtendercontrollerExtenderprofileCellularControllerreportState? state, CustomResourceOptions? opts = null)
public static ObjectExtendercontrollerExtenderprofileCellularControllerreport get(String name, Output<String> id, ObjectExtendercontrollerExtenderprofileCellularControllerreportState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectExtendercontrollerExtenderprofileCellularControllerreport 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Extender
Profile string - Extender Profile.
- Interval double
- Controller report interval.
- Object
Extendercontroller stringExtenderprofile Cellular Controllerreport Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Signal
Threshold double - Controller report signal threshold.
- Status string
- FortiExtender controller report status. Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Extender
Profile string - Extender Profile.
- Interval float64
- Controller report interval.
- Object
Extendercontroller stringExtenderprofile Cellular Controllerreport Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Signal
Threshold float64 - Controller report signal threshold.
- Status string
- FortiExtender controller report status. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - extender
Profile String - Extender Profile.
- interval Double
- Controller report interval.
- object
Extendercontroller StringExtenderprofile Cellular Controllerreport Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal
Threshold Double - Controller report signal threshold.
- status String
- FortiExtender controller report status. Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - extender
Profile string - Extender Profile.
- interval number
- Controller report interval.
- object
Extendercontroller stringExtenderprofile Cellular Controllerreport Id - an identifier for the resource.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal
Threshold number - Controller report signal threshold.
- status string
- FortiExtender controller report status. Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - extender_
profile str - Extender Profile.
- interval float
- Controller report interval.
- object_
extendercontroller_ strextenderprofile_ cellular_ controllerreport_ id - an identifier for the resource.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal_
threshold float - Controller report signal threshold.
- status str
- FortiExtender controller report status. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - extender
Profile String - Extender Profile.
- interval Number
- Controller report interval.
- object
Extendercontroller StringExtenderprofile Cellular Controllerreport Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - signal
Threshold Number - Controller report signal threshold.
- status String
- FortiExtender controller report status. Valid values:
disable
,enable
.
Import
ObjectExtenderController ExtenderProfileCellularControllerReport can be imported using any of these accepted formats:
Set import_options = [“extender_profile=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectExtendercontrollerExtenderprofileCellularControllerreport:ObjectExtendercontrollerExtenderprofileCellularControllerreport labelname ObjectExtenderControllerExtenderProfileCellularControllerReport
$ 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.