sdwan.QosMapPolicyDefinition
Explore with Pulumi AI
This resource can manage a QoS Map Policy Definition .
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.QosMapPolicyDefinition;
import com.pulumi.sdwan.QosMapPolicyDefinitionArgs;
import com.pulumi.sdwan.inputs.QosMapPolicyDefinitionQosSchedulerArgs;
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 example = new QosMapPolicyDefinition("example", QosMapPolicyDefinitionArgs.builder()
.name("Example")
.description("My description")
.qosSchedulers(QosMapPolicyDefinitionQosSchedulerArgs.builder()
.queue(6)
.class_map_id("2081c2f4-3f9f-4fee-8078-dcc8904e368d")
.bandwidth_percent(10)
.buffer_percent(10)
.burst(100000)
.drop_type("red-drop")
.scheduling_type("wrr")
.build())
.build());
}
}
resources:
example:
type: sdwan:QosMapPolicyDefinition
properties:
name: Example
description: My description
qosSchedulers:
- queue: 6
class_map_id: 2081c2f4-3f9f-4fee-8078-dcc8904e368d
bandwidth_percent: 10
buffer_percent: 10
burst: 100000
drop_type: red-drop
scheduling_type: wrr
Create QosMapPolicyDefinition Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new QosMapPolicyDefinition(name: string, args: QosMapPolicyDefinitionArgs, opts?: CustomResourceOptions);
@overload
def QosMapPolicyDefinition(resource_name: str,
args: QosMapPolicyDefinitionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def QosMapPolicyDefinition(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
qos_schedulers: Optional[Sequence[QosMapPolicyDefinitionQosSchedulerArgs]] = None,
name: Optional[str] = None)
func NewQosMapPolicyDefinition(ctx *Context, name string, args QosMapPolicyDefinitionArgs, opts ...ResourceOption) (*QosMapPolicyDefinition, error)
public QosMapPolicyDefinition(string name, QosMapPolicyDefinitionArgs args, CustomResourceOptions? opts = null)
public QosMapPolicyDefinition(String name, QosMapPolicyDefinitionArgs args)
public QosMapPolicyDefinition(String name, QosMapPolicyDefinitionArgs args, CustomResourceOptions options)
type: sdwan:QosMapPolicyDefinition
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 QosMapPolicyDefinitionArgs
- 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 QosMapPolicyDefinitionArgs
- 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 QosMapPolicyDefinitionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args QosMapPolicyDefinitionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args QosMapPolicyDefinitionArgs
- 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 qosMapPolicyDefinitionResource = new Sdwan.QosMapPolicyDefinition("qosMapPolicyDefinitionResource", new()
{
Description = "string",
QosSchedulers = new[]
{
new Sdwan.Inputs.QosMapPolicyDefinitionQosSchedulerArgs
{
BandwidthPercent = 0,
BufferPercent = 0,
ClassMapId = "string",
DropType = "string",
Queue = 0,
SchedulingType = "string",
Burst = 0,
ClassMapVersion = 0,
},
},
Name = "string",
});
example, err := sdwan.NewQosMapPolicyDefinition(ctx, "qosMapPolicyDefinitionResource", &sdwan.QosMapPolicyDefinitionArgs{
Description: pulumi.String("string"),
QosSchedulers: sdwan.QosMapPolicyDefinitionQosSchedulerArray{
&sdwan.QosMapPolicyDefinitionQosSchedulerArgs{
BandwidthPercent: pulumi.Int(0),
BufferPercent: pulumi.Int(0),
ClassMapId: pulumi.String("string"),
DropType: pulumi.String("string"),
Queue: pulumi.Int(0),
SchedulingType: pulumi.String("string"),
Burst: pulumi.Int(0),
ClassMapVersion: pulumi.Int(0),
},
},
Name: pulumi.String("string"),
})
var qosMapPolicyDefinitionResource = new QosMapPolicyDefinition("qosMapPolicyDefinitionResource", QosMapPolicyDefinitionArgs.builder()
.description("string")
.qosSchedulers(QosMapPolicyDefinitionQosSchedulerArgs.builder()
.bandwidthPercent(0)
.bufferPercent(0)
.classMapId("string")
.dropType("string")
.queue(0)
.schedulingType("string")
.burst(0)
.classMapVersion(0)
.build())
.name("string")
.build());
qos_map_policy_definition_resource = sdwan.QosMapPolicyDefinition("qosMapPolicyDefinitionResource",
description="string",
qos_schedulers=[sdwan.QosMapPolicyDefinitionQosSchedulerArgs(
bandwidth_percent=0,
buffer_percent=0,
class_map_id="string",
drop_type="string",
queue=0,
scheduling_type="string",
burst=0,
class_map_version=0,
)],
name="string")
const qosMapPolicyDefinitionResource = new sdwan.QosMapPolicyDefinition("qosMapPolicyDefinitionResource", {
description: "string",
qosSchedulers: [{
bandwidthPercent: 0,
bufferPercent: 0,
classMapId: "string",
dropType: "string",
queue: 0,
schedulingType: "string",
burst: 0,
classMapVersion: 0,
}],
name: "string",
});
type: sdwan:QosMapPolicyDefinition
properties:
description: string
name: string
qosSchedulers:
- bandwidthPercent: 0
bufferPercent: 0
burst: 0
classMapId: string
classMapVersion: 0
dropType: string
queue: 0
schedulingType: string
QosMapPolicyDefinition Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The QosMapPolicyDefinition resource accepts the following input properties:
- Description string
- The description of the policy definition
- Qos
Schedulers List<QosMap Policy Definition Qos Scheduler> - List of QoS schedulers
- Name string
- The name of the policy definition
- Description string
- The description of the policy definition
- Qos
Schedulers []QosMap Policy Definition Qos Scheduler Args - List of QoS schedulers
- Name string
- The name of the policy definition
- description String
- The description of the policy definition
- qos
Schedulers List<QosMap Policy Definition Qos Scheduler> - List of QoS schedulers
- name String
- The name of the policy definition
- description string
- The description of the policy definition
- qos
Schedulers QosMap Policy Definition Qos Scheduler[] - List of QoS schedulers
- name string
- The name of the policy definition
- description str
- The description of the policy definition
- qos_
schedulers Sequence[QosMap Policy Definition Qos Scheduler Args] - List of QoS schedulers
- name str
- The name of the policy definition
- description String
- The description of the policy definition
- qos
Schedulers List<Property Map> - List of QoS schedulers
- name String
- The name of the policy definition
Outputs
All input properties are implicitly available as output properties. Additionally, the QosMapPolicyDefinition resource produces the following output properties:
Look up Existing QosMapPolicyDefinition Resource
Get an existing QosMapPolicyDefinition 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?: QosMapPolicyDefinitionState, opts?: CustomResourceOptions): QosMapPolicyDefinition
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
name: Optional[str] = None,
qos_schedulers: Optional[Sequence[QosMapPolicyDefinitionQosSchedulerArgs]] = None,
type: Optional[str] = None,
version: Optional[int] = None) -> QosMapPolicyDefinition
func GetQosMapPolicyDefinition(ctx *Context, name string, id IDInput, state *QosMapPolicyDefinitionState, opts ...ResourceOption) (*QosMapPolicyDefinition, error)
public static QosMapPolicyDefinition Get(string name, Input<string> id, QosMapPolicyDefinitionState? state, CustomResourceOptions? opts = null)
public static QosMapPolicyDefinition get(String name, Output<String> id, QosMapPolicyDefinitionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Description string
- The description of the policy definition
- Name string
- The name of the policy definition
- Qos
Schedulers List<QosMap Policy Definition Qos Scheduler> - List of QoS schedulers
- Type string
- Type
- Version int
- The version of the object
- Description string
- The description of the policy definition
- Name string
- The name of the policy definition
- Qos
Schedulers []QosMap Policy Definition Qos Scheduler Args - List of QoS schedulers
- Type string
- Type
- Version int
- The version of the object
- description String
- The description of the policy definition
- name String
- The name of the policy definition
- qos
Schedulers List<QosMap Policy Definition Qos Scheduler> - List of QoS schedulers
- type String
- Type
- version Integer
- The version of the object
- description string
- The description of the policy definition
- name string
- The name of the policy definition
- qos
Schedulers QosMap Policy Definition Qos Scheduler[] - List of QoS schedulers
- type string
- Type
- version number
- The version of the object
- description str
- The description of the policy definition
- name str
- The name of the policy definition
- qos_
schedulers Sequence[QosMap Policy Definition Qos Scheduler Args] - List of QoS schedulers
- type str
- Type
- version int
- The version of the object
- description String
- The description of the policy definition
- name String
- The name of the policy definition
- qos
Schedulers List<Property Map> - List of QoS schedulers
- type String
- Type
- version Number
- The version of the object
Supporting Types
QosMapPolicyDefinitionQosScheduler, QosMapPolicyDefinitionQosSchedulerArgs
- Bandwidth
Percent int - Bandwidth percent
- Range:
0
-100
- Range:
- Buffer
Percent int - Buffer percent
- Range:
0
-100
- Range:
- Class
Map stringId - Class map ID
- Drop
Type string - Drop type
- Choices:
tail-drop
,red-drop
- Choices:
- Queue int
- Queue number
- Range:
0
-7
- Range:
- Scheduling
Type string - Scheduling type
- Choices:
llq
,wrr
- Choices:
- Burst int
- Burst size
- Range:
5000
-10000000
- Range:
- Class
Map intVersion - Class map version
- Bandwidth
Percent int - Bandwidth percent
- Range:
0
-100
- Range:
- Buffer
Percent int - Buffer percent
- Range:
0
-100
- Range:
- Class
Map stringId - Class map ID
- Drop
Type string - Drop type
- Choices:
tail-drop
,red-drop
- Choices:
- Queue int
- Queue number
- Range:
0
-7
- Range:
- Scheduling
Type string - Scheduling type
- Choices:
llq
,wrr
- Choices:
- Burst int
- Burst size
- Range:
5000
-10000000
- Range:
- Class
Map intVersion - Class map version
- bandwidth
Percent Integer - Bandwidth percent
- Range:
0
-100
- Range:
- buffer
Percent Integer - Buffer percent
- Range:
0
-100
- Range:
- class
Map StringId - Class map ID
- drop
Type String - Drop type
- Choices:
tail-drop
,red-drop
- Choices:
- queue Integer
- Queue number
- Range:
0
-7
- Range:
- scheduling
Type String - Scheduling type
- Choices:
llq
,wrr
- Choices:
- burst Integer
- Burst size
- Range:
5000
-10000000
- Range:
- class
Map IntegerVersion - Class map version
- bandwidth
Percent number - Bandwidth percent
- Range:
0
-100
- Range:
- buffer
Percent number - Buffer percent
- Range:
0
-100
- Range:
- class
Map stringId - Class map ID
- drop
Type string - Drop type
- Choices:
tail-drop
,red-drop
- Choices:
- queue number
- Queue number
- Range:
0
-7
- Range:
- scheduling
Type string - Scheduling type
- Choices:
llq
,wrr
- Choices:
- burst number
- Burst size
- Range:
5000
-10000000
- Range:
- class
Map numberVersion - Class map version
- bandwidth_
percent int - Bandwidth percent
- Range:
0
-100
- Range:
- buffer_
percent int - Buffer percent
- Range:
0
-100
- Range:
- class_
map_ strid - Class map ID
- drop_
type str - Drop type
- Choices:
tail-drop
,red-drop
- Choices:
- queue int
- Queue number
- Range:
0
-7
- Range:
- scheduling_
type str - Scheduling type
- Choices:
llq
,wrr
- Choices:
- burst int
- Burst size
- Range:
5000
-10000000
- Range:
- class_
map_ intversion - Class map version
- bandwidth
Percent Number - Bandwidth percent
- Range:
0
-100
- Range:
- buffer
Percent Number - Buffer percent
- Range:
0
-100
- Range:
- class
Map StringId - Class map ID
- drop
Type String - Drop type
- Choices:
tail-drop
,red-drop
- Choices:
- queue Number
- Queue number
- Range:
0
-7
- Range:
- scheduling
Type String - Scheduling type
- Choices:
llq
,wrr
- Choices:
- burst Number
- Burst size
- Range:
5000
-10000000
- Range:
- class
Map NumberVersion - Class map version
Import
$ pulumi import sdwan:index/qosMapPolicyDefinition:QosMapPolicyDefinition example "f6b2c44c-693c-4763-b010-895aa3d236bd"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwan
Terraform Provider.