published on Friday, Jul 31, 2026 by fortinetdev
published on Friday, Jul 31, 2026 by fortinetdev
Create ObjectWirelesscontrollerApcfgprofileCommandlistSort Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWirelesscontrollerApcfgprofileCommandlistSort(name: string, args: ObjectWirelesscontrollerApcfgprofileCommandlistSortArgs, opts?: CustomResourceOptions);@overload
def ObjectWirelesscontrollerApcfgprofileCommandlistSort(resource_name: str,
args: ObjectWirelesscontrollerApcfgprofileCommandlistSortArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWirelesscontrollerApcfgprofileCommandlistSort(resource_name: str,
opts: Optional[ResourceOptions] = None,
apcfg_profile: Optional[str] = None,
sortby: Optional[str] = None,
sortdirection: Optional[str] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
force_recreate: Optional[str] = None,
manual_orders: Optional[Sequence[str]] = None,
object_wirelesscontroller_apcfgprofile_commandlist_sort_id: Optional[str] = None,
scopetype: Optional[str] = None,
status: Optional[str] = None)func NewObjectWirelesscontrollerApcfgprofileCommandlistSort(ctx *Context, name string, args ObjectWirelesscontrollerApcfgprofileCommandlistSortArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerApcfgprofileCommandlistSort, error)public ObjectWirelesscontrollerApcfgprofileCommandlistSort(string name, ObjectWirelesscontrollerApcfgprofileCommandlistSortArgs args, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerApcfgprofileCommandlistSort(String name, ObjectWirelesscontrollerApcfgprofileCommandlistSortArgs args)
public ObjectWirelesscontrollerApcfgprofileCommandlistSort(String name, ObjectWirelesscontrollerApcfgprofileCommandlistSortArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerApcfgprofileCommandlistSort
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "fortimanager_object_wirelesscontroller_apcfgprofile_commandlist_sort" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerApcfgprofileCommandlistSortArgs
- 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 ObjectWirelesscontrollerApcfgprofileCommandlistSortArgs
- 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 ObjectWirelesscontrollerApcfgprofileCommandlistSortArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerApcfgprofileCommandlistSortArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWirelesscontrollerApcfgprofileCommandlistSortArgs
- 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 objectWirelesscontrollerApcfgprofileCommandlistSortResource = new Fortimanager.ObjectWirelesscontrollerApcfgprofileCommandlistSort("objectWirelesscontrollerApcfgprofileCommandlistSortResource", new()
{
ApcfgProfile = "string",
Sortby = "string",
Sortdirection = "string",
Adom = "string",
Comment = "string",
ForceRecreate = "string",
ManualOrders = new[]
{
"string",
},
ObjectWirelesscontrollerApcfgprofileCommandlistSortId = "string",
Scopetype = "string",
Status = "string",
});
example, err := fortimanager.NewObjectWirelesscontrollerApcfgprofileCommandlistSort(ctx, "objectWirelesscontrollerApcfgprofileCommandlistSortResource", &fortimanager.ObjectWirelesscontrollerApcfgprofileCommandlistSortArgs{
ApcfgProfile: pulumi.String("string"),
Sortby: pulumi.String("string"),
Sortdirection: pulumi.String("string"),
Adom: pulumi.String("string"),
Comment: pulumi.String("string"),
ForceRecreate: pulumi.String("string"),
ManualOrders: pulumi.StringArray{
pulumi.String("string"),
},
ObjectWirelesscontrollerApcfgprofileCommandlistSortId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Status: pulumi.String("string"),
})
resource "fortimanager_object_wirelesscontroller_apcfgprofile_commandlist_sort" "objectWirelesscontrollerApcfgprofileCommandlistSortResource" {
lifecycle {
create_before_destroy = true
}
apcfg_profile = "string"
sortby = "string"
sortdirection = "string"
adom = "string"
comment = "string"
force_recreate = "string"
manual_orders = ["string"]
object_wirelesscontroller_apcfgprofile_commandlist_sort_id = "string"
scopetype = "string"
status = "string"
}
var objectWirelesscontrollerApcfgprofileCommandlistSortResource = new ObjectWirelesscontrollerApcfgprofileCommandlistSort("objectWirelesscontrollerApcfgprofileCommandlistSortResource", ObjectWirelesscontrollerApcfgprofileCommandlistSortArgs.builder()
.apcfgProfile("string")
.sortby("string")
.sortdirection("string")
.adom("string")
.comment("string")
.forceRecreate("string")
.manualOrders("string")
.objectWirelesscontrollerApcfgprofileCommandlistSortId("string")
.scopetype("string")
.status("string")
.build());
object_wirelesscontroller_apcfgprofile_commandlist_sort_resource = fortimanager.ObjectWirelesscontrollerApcfgprofileCommandlistSort("objectWirelesscontrollerApcfgprofileCommandlistSortResource",
apcfg_profile="string",
sortby="string",
sortdirection="string",
adom="string",
comment="string",
force_recreate="string",
manual_orders=["string"],
object_wirelesscontroller_apcfgprofile_commandlist_sort_id="string",
scopetype="string",
status="string")
const objectWirelesscontrollerApcfgprofileCommandlistSortResource = new fortimanager.ObjectWirelesscontrollerApcfgprofileCommandlistSort("objectWirelesscontrollerApcfgprofileCommandlistSortResource", {
apcfgProfile: "string",
sortby: "string",
sortdirection: "string",
adom: "string",
comment: "string",
forceRecreate: "string",
manualOrders: ["string"],
objectWirelesscontrollerApcfgprofileCommandlistSortId: "string",
scopetype: "string",
status: "string",
});
type: fortimanager:ObjectWirelesscontrollerApcfgprofileCommandlistSort
properties:
adom: string
apcfgProfile: string
comment: string
forceRecreate: string
manualOrders:
- string
objectWirelesscontrollerApcfgprofileCommandlistSortId: string
scopetype: string
sortby: string
sortdirection: string
status: string
ObjectWirelesscontrollerApcfgprofileCommandlistSort 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 ObjectWirelesscontrollerApcfgprofileCommandlistSort resource accepts the following input properties:
- Apcfg
Profile string - Sortby string
- Sortdirection string
- Adom string
- Comment string
- Force
Recreate string - Manual
Orders List<string> - Object
Wirelesscontroller stringApcfgprofile Commandlist Sort Id - Scopetype string
- Status string
- Apcfg
Profile string - Sortby string
- Sortdirection string
- Adom string
- Comment string
- Force
Recreate string - Manual
Orders []string - Object
Wirelesscontroller stringApcfgprofile Commandlist Sort Id - Scopetype string
- Status string
- apcfg_
profile string - sortby string
- sortdirection string
- adom string
- comment string
- force_
recreate string - manual_
orders list(string) - object_
wirelesscontroller_ stringapcfgprofile_ commandlist_ sort_ id - scopetype string
- status string
- apcfg
Profile String - sortby String
- sortdirection String
- adom String
- comment String
- force
Recreate String - manual
Orders List<String> - object
Wirelesscontroller StringApcfgprofile Commandlist Sort Id - scopetype String
- status String
- apcfg
Profile string - sortby string
- sortdirection string
- adom string
- comment string
- force
Recreate string - manual
Orders string[] - object
Wirelesscontroller stringApcfgprofile Commandlist Sort Id - scopetype string
- status string
- apcfg_
profile str - sortby str
- sortdirection str
- adom str
- comment str
- force_
recreate str - manual_
orders Sequence[str] - object_
wirelesscontroller_ strapcfgprofile_ commandlist_ sort_ id - scopetype str
- status str
- apcfg
Profile String - sortby String
- sortdirection String
- adom String
- comment String
- force
Recreate String - manual
Orders List<String> - object
Wirelesscontroller StringApcfgprofile Commandlist Sort Id - scopetype String
- status String
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWirelesscontrollerApcfgprofileCommandlistSort resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- State
Lists List<ObjectWirelesscontroller Apcfgprofile Commandlist Sort State List>
- Id string
- The provider-assigned unique ID for this managed resource.
- State
Lists []ObjectWirelesscontroller Apcfgprofile Commandlist Sort State List
- id string
- The provider-assigned unique ID for this managed resource.
- state_
lists list(object)
- id String
- The provider-assigned unique ID for this managed resource.
- state
Lists List<ObjectWirelesscontroller Apcfgprofile Commandlist Sort State List>
- id string
- The provider-assigned unique ID for this managed resource.
- state
Lists ObjectWirelesscontroller Apcfgprofile Commandlist Sort State List[]
- id str
- The provider-assigned unique ID for this managed resource.
- state_
lists Sequence[ObjectWirelesscontroller Apcfgprofile Commandlist Sort State List]
- id String
- The provider-assigned unique ID for this managed resource.
- state
Lists List<Property Map>
Look up Existing ObjectWirelesscontrollerApcfgprofileCommandlistSort Resource
Get an existing ObjectWirelesscontrollerApcfgprofileCommandlistSort 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?: ObjectWirelesscontrollerApcfgprofileCommandlistSortState, opts?: CustomResourceOptions): ObjectWirelesscontrollerApcfgprofileCommandlistSort@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
apcfg_profile: Optional[str] = None,
comment: Optional[str] = None,
force_recreate: Optional[str] = None,
manual_orders: Optional[Sequence[str]] = None,
object_wirelesscontroller_apcfgprofile_commandlist_sort_id: Optional[str] = None,
scopetype: Optional[str] = None,
sortby: Optional[str] = None,
sortdirection: Optional[str] = None,
state_lists: Optional[Sequence[ObjectWirelesscontrollerApcfgprofileCommandlistSortStateListArgs]] = None,
status: Optional[str] = None) -> ObjectWirelesscontrollerApcfgprofileCommandlistSortfunc GetObjectWirelesscontrollerApcfgprofileCommandlistSort(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerApcfgprofileCommandlistSortState, opts ...ResourceOption) (*ObjectWirelesscontrollerApcfgprofileCommandlistSort, error)public static ObjectWirelesscontrollerApcfgprofileCommandlistSort Get(string name, Input<string> id, ObjectWirelesscontrollerApcfgprofileCommandlistSortState? state, CustomResourceOptions? opts = null)public static ObjectWirelesscontrollerApcfgprofileCommandlistSort get(String name, Output<String> id, ObjectWirelesscontrollerApcfgprofileCommandlistSortState state, CustomResourceOptions options)resources: _: type: fortimanager:ObjectWirelesscontrollerApcfgprofileCommandlistSort get: id: ${id}import {
to = fortimanager_object_wirelesscontroller_apcfgprofile_commandlist_sort.example
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
- Apcfg
Profile string - Comment string
- Force
Recreate string - Manual
Orders List<string> - Object
Wirelesscontroller stringApcfgprofile Commandlist Sort Id - Scopetype string
- Sortby string
- Sortdirection string
- State
Lists List<ObjectWirelesscontroller Apcfgprofile Commandlist Sort State List> - Status string
- Adom string
- Apcfg
Profile string - Comment string
- Force
Recreate string - Manual
Orders []string - Object
Wirelesscontroller stringApcfgprofile Commandlist Sort Id - Scopetype string
- Sortby string
- Sortdirection string
- State
Lists []ObjectWirelesscontroller Apcfgprofile Commandlist Sort State List Args - Status string
- adom string
- apcfg_
profile string - comment string
- force_
recreate string - manual_
orders list(string) - object_
wirelesscontroller_ stringapcfgprofile_ commandlist_ sort_ id - scopetype string
- sortby string
- sortdirection string
- state_
lists list(object) - status string
- adom String
- apcfg
Profile String - comment String
- force
Recreate String - manual
Orders List<String> - object
Wirelesscontroller StringApcfgprofile Commandlist Sort Id - scopetype String
- sortby String
- sortdirection String
- state
Lists List<ObjectWirelesscontroller Apcfgprofile Commandlist Sort State List> - status String
- adom string
- apcfg
Profile string - comment string
- force
Recreate string - manual
Orders string[] - object
Wirelesscontroller stringApcfgprofile Commandlist Sort Id - scopetype string
- sortby string
- sortdirection string
- state
Lists ObjectWirelesscontroller Apcfgprofile Commandlist Sort State List[] - status string
- adom String
- apcfg
Profile String - comment String
- force
Recreate String - manual
Orders List<String> - object
Wirelesscontroller StringApcfgprofile Commandlist Sort Id - scopetype String
- sortby String
- sortdirection String
- state
Lists List<Property Map> - status String
Supporting Types
ObjectWirelesscontrollerApcfgprofileCommandlistSortStateList, ObjectWirelesscontrollerApcfgprofileCommandlistSortStateListArgs
- Id string
- Id string
- id string
- id String
- id string
- id str
- id String
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanagerTerraform Provider.
published on Friday, Jul 31, 2026 by fortinetdev