fortimanager.ObjectWirelesscontrollerHotspot20QosmapDscprange
Explore with Pulumi AI
Differentiated Services Code Point (DSCP) ranges.
This resource is a sub resource for variable
dscp_range
of resourcefortimanager.ObjectWirelesscontrollerHotspot20Qosmap
. 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 trnameObjectWirelesscontrollerHotspot20Qosmap = new fortimanager.ObjectWirelesscontrollerHotspot20Qosmap("trnameObjectWirelesscontrollerHotspot20Qosmap", {});
const trnameObjectWirelesscontrollerHotspot20QosmapDscprange = new fortimanager.ObjectWirelesscontrollerHotspot20QosmapDscprange("trnameObjectWirelesscontrollerHotspot20QosmapDscprange", {
qosMap: trnameObjectWirelesscontrollerHotspot20Qosmap.name,
high: 20,
index: 1,
low: 10,
}, {
dependsOn: [trnameObjectWirelesscontrollerHotspot20Qosmap],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_wirelesscontroller_hotspot20_qosmap = fortimanager.ObjectWirelesscontrollerHotspot20Qosmap("trnameObjectWirelesscontrollerHotspot20Qosmap")
trname_object_wirelesscontroller_hotspot20_qosmap_dscprange = fortimanager.ObjectWirelesscontrollerHotspot20QosmapDscprange("trnameObjectWirelesscontrollerHotspot20QosmapDscprange",
qos_map=trname_object_wirelesscontroller_hotspot20_qosmap.name,
high=20,
index=1,
low=10,
opts = pulumi.ResourceOptions(depends_on=[trname_object_wirelesscontroller_hotspot20_qosmap]))
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 {
trnameObjectWirelesscontrollerHotspot20Qosmap, err := fortimanager.NewObjectWirelesscontrollerHotspot20Qosmap(ctx, "trnameObjectWirelesscontrollerHotspot20Qosmap", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectWirelesscontrollerHotspot20QosmapDscprange(ctx, "trnameObjectWirelesscontrollerHotspot20QosmapDscprange", &fortimanager.ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs{
QosMap: trnameObjectWirelesscontrollerHotspot20Qosmap.Name,
High: pulumi.Float64(20),
Index: pulumi.Float64(1),
Low: pulumi.Float64(10),
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectWirelesscontrollerHotspot20Qosmap,
}))
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 trnameObjectWirelesscontrollerHotspot20Qosmap = new Fortimanager.ObjectWirelesscontrollerHotspot20Qosmap("trnameObjectWirelesscontrollerHotspot20Qosmap");
var trnameObjectWirelesscontrollerHotspot20QosmapDscprange = new Fortimanager.ObjectWirelesscontrollerHotspot20QosmapDscprange("trnameObjectWirelesscontrollerHotspot20QosmapDscprange", new()
{
QosMap = trnameObjectWirelesscontrollerHotspot20Qosmap.Name,
High = 20,
Index = 1,
Low = 10,
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectWirelesscontrollerHotspot20Qosmap,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20Qosmap;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20QosmapDscprange;
import com.pulumi.fortimanager.ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs;
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 trnameObjectWirelesscontrollerHotspot20Qosmap = new ObjectWirelesscontrollerHotspot20Qosmap("trnameObjectWirelesscontrollerHotspot20Qosmap");
var trnameObjectWirelesscontrollerHotspot20QosmapDscprange = new ObjectWirelesscontrollerHotspot20QosmapDscprange("trnameObjectWirelesscontrollerHotspot20QosmapDscprange", ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs.builder()
.qosMap(trnameObjectWirelesscontrollerHotspot20Qosmap.name())
.high(20)
.index(1)
.low(10)
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectWirelesscontrollerHotspot20Qosmap)
.build());
}
}
resources:
trnameObjectWirelesscontrollerHotspot20QosmapDscprange:
type: fortimanager:ObjectWirelesscontrollerHotspot20QosmapDscprange
properties:
qosMap: ${trnameObjectWirelesscontrollerHotspot20Qosmap.name}
high: 20
index: 1
low: 10
options:
dependsOn:
- ${trnameObjectWirelesscontrollerHotspot20Qosmap}
trnameObjectWirelesscontrollerHotspot20Qosmap:
type: fortimanager:ObjectWirelesscontrollerHotspot20Qosmap
Create ObjectWirelesscontrollerHotspot20QosmapDscprange Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWirelesscontrollerHotspot20QosmapDscprange(name: string, args: ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs, opts?: CustomResourceOptions);
@overload
def ObjectWirelesscontrollerHotspot20QosmapDscprange(resource_name: str,
args: ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWirelesscontrollerHotspot20QosmapDscprange(resource_name: str,
opts: Optional[ResourceOptions] = None,
qos_map: Optional[str] = None,
adom: Optional[str] = None,
high: Optional[float] = None,
index: Optional[float] = None,
low: Optional[float] = None,
object_wirelesscontroller_hotspot20_qosmap_dscprange_id: Optional[str] = None,
scopetype: Optional[str] = None,
up: Optional[float] = None)
func NewObjectWirelesscontrollerHotspot20QosmapDscprange(ctx *Context, name string, args ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20QosmapDscprange, error)
public ObjectWirelesscontrollerHotspot20QosmapDscprange(string name, ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs args, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerHotspot20QosmapDscprange(String name, ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs args)
public ObjectWirelesscontrollerHotspot20QosmapDscprange(String name, ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerHotspot20QosmapDscprange
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 ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs
- 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 ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs
- 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 ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs
- 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 objectWirelesscontrollerHotspot20QosmapDscprangeResource = new Fortimanager.ObjectWirelesscontrollerHotspot20QosmapDscprange("objectWirelesscontrollerHotspot20QosmapDscprangeResource", new()
{
QosMap = "string",
Adom = "string",
High = 0,
Index = 0,
Low = 0,
ObjectWirelesscontrollerHotspot20QosmapDscprangeId = "string",
Scopetype = "string",
Up = 0,
});
example, err := fortimanager.NewObjectWirelesscontrollerHotspot20QosmapDscprange(ctx, "objectWirelesscontrollerHotspot20QosmapDscprangeResource", &fortimanager.ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs{
QosMap: pulumi.String("string"),
Adom: pulumi.String("string"),
High: pulumi.Float64(0),
Index: pulumi.Float64(0),
Low: pulumi.Float64(0),
ObjectWirelesscontrollerHotspot20QosmapDscprangeId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Up: pulumi.Float64(0),
})
var objectWirelesscontrollerHotspot20QosmapDscprangeResource = new ObjectWirelesscontrollerHotspot20QosmapDscprange("objectWirelesscontrollerHotspot20QosmapDscprangeResource", ObjectWirelesscontrollerHotspot20QosmapDscprangeArgs.builder()
.qosMap("string")
.adom("string")
.high(0)
.index(0)
.low(0)
.objectWirelesscontrollerHotspot20QosmapDscprangeId("string")
.scopetype("string")
.up(0)
.build());
object_wirelesscontroller_hotspot20_qosmap_dscprange_resource = fortimanager.ObjectWirelesscontrollerHotspot20QosmapDscprange("objectWirelesscontrollerHotspot20QosmapDscprangeResource",
qos_map="string",
adom="string",
high=0,
index=0,
low=0,
object_wirelesscontroller_hotspot20_qosmap_dscprange_id="string",
scopetype="string",
up=0)
const objectWirelesscontrollerHotspot20QosmapDscprangeResource = new fortimanager.ObjectWirelesscontrollerHotspot20QosmapDscprange("objectWirelesscontrollerHotspot20QosmapDscprangeResource", {
qosMap: "string",
adom: "string",
high: 0,
index: 0,
low: 0,
objectWirelesscontrollerHotspot20QosmapDscprangeId: "string",
scopetype: "string",
up: 0,
});
type: fortimanager:ObjectWirelesscontrollerHotspot20QosmapDscprange
properties:
adom: string
high: 0
index: 0
low: 0
objectWirelesscontrollerHotspot20QosmapDscprangeId: string
qosMap: string
scopetype: string
up: 0
ObjectWirelesscontrollerHotspot20QosmapDscprange 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 ObjectWirelesscontrollerHotspot20QosmapDscprange resource accepts the following input properties:
- Qos
Map string - Qos Map.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - High double
- DSCP high value.
- Index double
- DSCP range index.
- Low double
- DSCP low value.
- Object
Wirelesscontroller stringHotspot20Qosmap Dscprange Id - an identifier for the resource with format {{index}}.
- 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
. - Up double
- User priority.
- Qos
Map string - Qos Map.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - High float64
- DSCP high value.
- Index float64
- DSCP range index.
- Low float64
- DSCP low value.
- Object
Wirelesscontroller stringHotspot20Qosmap Dscprange Id - an identifier for the resource with format {{index}}.
- 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
. - Up float64
- User priority.
- qos
Map String - Qos Map.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - high Double
- DSCP high value.
- index Double
- DSCP range index.
- low Double
- DSCP low value.
- object
Wirelesscontroller StringHotspot20Qosmap Dscprange Id - an identifier for the resource with format {{index}}.
- 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
. - up Double
- User priority.
- qos
Map string - Qos Map.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - high number
- DSCP high value.
- index number
- DSCP range index.
- low number
- DSCP low value.
- object
Wirelesscontroller stringHotspot20Qosmap Dscprange Id - an identifier for the resource with format {{index}}.
- 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
. - up number
- User priority.
- qos_
map str - Qos Map.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - high float
- DSCP high value.
- index float
- DSCP range index.
- low float
- DSCP low value.
- object_
wirelesscontroller_ strhotspot20_ qosmap_ dscprange_ id - an identifier for the resource with format {{index}}.
- 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
. - up float
- User priority.
- qos
Map String - Qos Map.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - high Number
- DSCP high value.
- index Number
- DSCP range index.
- low Number
- DSCP low value.
- object
Wirelesscontroller StringHotspot20Qosmap Dscprange Id - an identifier for the resource with format {{index}}.
- 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
. - up Number
- User priority.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWirelesscontrollerHotspot20QosmapDscprange 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 ObjectWirelesscontrollerHotspot20QosmapDscprange Resource
Get an existing ObjectWirelesscontrollerHotspot20QosmapDscprange 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?: ObjectWirelesscontrollerHotspot20QosmapDscprangeState, opts?: CustomResourceOptions): ObjectWirelesscontrollerHotspot20QosmapDscprange
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
high: Optional[float] = None,
index: Optional[float] = None,
low: Optional[float] = None,
object_wirelesscontroller_hotspot20_qosmap_dscprange_id: Optional[str] = None,
qos_map: Optional[str] = None,
scopetype: Optional[str] = None,
up: Optional[float] = None) -> ObjectWirelesscontrollerHotspot20QosmapDscprange
func GetObjectWirelesscontrollerHotspot20QosmapDscprange(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerHotspot20QosmapDscprangeState, opts ...ResourceOption) (*ObjectWirelesscontrollerHotspot20QosmapDscprange, error)
public static ObjectWirelesscontrollerHotspot20QosmapDscprange Get(string name, Input<string> id, ObjectWirelesscontrollerHotspot20QosmapDscprangeState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerHotspot20QosmapDscprange get(String name, Output<String> id, ObjectWirelesscontrollerHotspot20QosmapDscprangeState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWirelesscontrollerHotspot20QosmapDscprange 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. - High double
- DSCP high value.
- Index double
- DSCP range index.
- Low double
- DSCP low value.
- Object
Wirelesscontroller stringHotspot20Qosmap Dscprange Id - an identifier for the resource with format {{index}}.
- Qos
Map string - Qos Map.
- 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
. - Up double
- User priority.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - High float64
- DSCP high value.
- Index float64
- DSCP range index.
- Low float64
- DSCP low value.
- Object
Wirelesscontroller stringHotspot20Qosmap Dscprange Id - an identifier for the resource with format {{index}}.
- Qos
Map string - Qos Map.
- 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
. - Up float64
- User priority.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - high Double
- DSCP high value.
- index Double
- DSCP range index.
- low Double
- DSCP low value.
- object
Wirelesscontroller StringHotspot20Qosmap Dscprange Id - an identifier for the resource with format {{index}}.
- qos
Map String - Qos Map.
- 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
. - up Double
- User priority.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - high number
- DSCP high value.
- index number
- DSCP range index.
- low number
- DSCP low value.
- object
Wirelesscontroller stringHotspot20Qosmap Dscprange Id - an identifier for the resource with format {{index}}.
- qos
Map string - Qos Map.
- 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
. - up number
- User priority.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - high float
- DSCP high value.
- index float
- DSCP range index.
- low float
- DSCP low value.
- object_
wirelesscontroller_ strhotspot20_ qosmap_ dscprange_ id - an identifier for the resource with format {{index}}.
- qos_
map str - Qos Map.
- 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
. - up float
- User priority.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - high Number
- DSCP high value.
- index Number
- DSCP range index.
- low Number
- DSCP low value.
- object
Wirelesscontroller StringHotspot20Qosmap Dscprange Id - an identifier for the resource with format {{index}}.
- qos
Map String - Qos Map.
- 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
. - up Number
- User priority.
Import
ObjectWirelessController Hotspot20QosMapDscpRange can be imported using any of these accepted formats:
Set import_options = [“qos_map=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWirelesscontrollerHotspot20QosmapDscprange:ObjectWirelesscontrollerHotspot20QosmapDscprange labelname {{index}}
$ 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.