scm.QosProfile
Explore with Pulumi AI
Retrieves a config item.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const example = new scm.QosProfile("example", {});
import pulumi
import pulumi_scm as scm
example = scm.QosProfile("example")
package main
import (
	"github.com/pulumi/pulumi-scm/sdk/go/scm"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := scm.NewQosProfile(ctx, "example", nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() => 
{
    var example = new Scm.QosProfile("example");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.QosProfile;
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 QosProfile("example");
    }
}
resources:
  example:
    type: scm:QosProfile
Create QosProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new QosProfile(name: string, args?: QosProfileArgs, opts?: CustomResourceOptions);@overload
def QosProfile(resource_name: str,
               args: Optional[QosProfileArgs] = None,
               opts: Optional[ResourceOptions] = None)
@overload
def QosProfile(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               aggregate_bandwidth: Optional[QosProfileAggregateBandwidthArgs] = None,
               class_bandwidth_type: Optional[QosProfileClassBandwidthTypeArgs] = None,
               device: Optional[str] = None,
               folder: Optional[str] = None,
               name: Optional[str] = None,
               snippet: Optional[str] = None)func NewQosProfile(ctx *Context, name string, args *QosProfileArgs, opts ...ResourceOption) (*QosProfile, error)public QosProfile(string name, QosProfileArgs? args = null, CustomResourceOptions? opts = null)
public QosProfile(String name, QosProfileArgs args)
public QosProfile(String name, QosProfileArgs args, CustomResourceOptions options)
type: scm:QosProfile
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 QosProfileArgs
- 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 QosProfileArgs
- 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 QosProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args QosProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args QosProfileArgs
- 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 qosProfileResource = new Scm.QosProfile("qosProfileResource", new()
{
    AggregateBandwidth = new Scm.Inputs.QosProfileAggregateBandwidthArgs
    {
        EgressGuaranteed = 0,
        EgressMax = 0,
    },
    ClassBandwidthType = new Scm.Inputs.QosProfileClassBandwidthTypeArgs
    {
        Mbps = new Scm.Inputs.QosProfileClassBandwidthTypeMbpsArgs
        {
            Classes = new[]
            {
                new Scm.Inputs.QosProfileClassBandwidthTypeMbpsClassArgs
                {
                    ClassBandwidth = new Scm.Inputs.QosProfileClassBandwidthTypeMbpsClassClassBandwidthArgs
                    {
                        EgressGuaranteed = 0,
                        EgressMax = 0,
                    },
                    Name = "string",
                    Priority = "string",
                },
            },
        },
        Percentage = new Scm.Inputs.QosProfileClassBandwidthTypePercentageArgs
        {
            Classes = new[]
            {
                new Scm.Inputs.QosProfileClassBandwidthTypePercentageClassArgs
                {
                    ClassBandwidth = new Scm.Inputs.QosProfileClassBandwidthTypePercentageClassClassBandwidthArgs
                    {
                        EgressGuaranteed = 0,
                        EgressMax = 0,
                    },
                    Name = "string",
                    Priority = "string",
                },
            },
        },
    },
    Device = "string",
    Folder = "string",
    Name = "string",
    Snippet = "string",
});
example, err := scm.NewQosProfile(ctx, "qosProfileResource", &scm.QosProfileArgs{
	AggregateBandwidth: &scm.QosProfileAggregateBandwidthArgs{
		EgressGuaranteed: pulumi.Int(0),
		EgressMax:        pulumi.Int(0),
	},
	ClassBandwidthType: &scm.QosProfileClassBandwidthTypeArgs{
		Mbps: &scm.QosProfileClassBandwidthTypeMbpsArgs{
			Classes: scm.QosProfileClassBandwidthTypeMbpsClassArray{
				&scm.QosProfileClassBandwidthTypeMbpsClassArgs{
					ClassBandwidth: &scm.QosProfileClassBandwidthTypeMbpsClassClassBandwidthArgs{
						EgressGuaranteed: pulumi.Int(0),
						EgressMax:        pulumi.Int(0),
					},
					Name:     pulumi.String("string"),
					Priority: pulumi.String("string"),
				},
			},
		},
		Percentage: &scm.QosProfileClassBandwidthTypePercentageArgs{
			Classes: scm.QosProfileClassBandwidthTypePercentageClassArray{
				&scm.QosProfileClassBandwidthTypePercentageClassArgs{
					ClassBandwidth: &scm.QosProfileClassBandwidthTypePercentageClassClassBandwidthArgs{
						EgressGuaranteed: pulumi.Int(0),
						EgressMax:        pulumi.Int(0),
					},
					Name:     pulumi.String("string"),
					Priority: pulumi.String("string"),
				},
			},
		},
	},
	Device:  pulumi.String("string"),
	Folder:  pulumi.String("string"),
	Name:    pulumi.String("string"),
	Snippet: pulumi.String("string"),
})
var qosProfileResource = new QosProfile("qosProfileResource", QosProfileArgs.builder()
    .aggregateBandwidth(QosProfileAggregateBandwidthArgs.builder()
        .egressGuaranteed(0)
        .egressMax(0)
        .build())
    .classBandwidthType(QosProfileClassBandwidthTypeArgs.builder()
        .mbps(QosProfileClassBandwidthTypeMbpsArgs.builder()
            .classes(QosProfileClassBandwidthTypeMbpsClassArgs.builder()
                .classBandwidth(QosProfileClassBandwidthTypeMbpsClassClassBandwidthArgs.builder()
                    .egressGuaranteed(0)
                    .egressMax(0)
                    .build())
                .name("string")
                .priority("string")
                .build())
            .build())
        .percentage(QosProfileClassBandwidthTypePercentageArgs.builder()
            .classes(QosProfileClassBandwidthTypePercentageClassArgs.builder()
                .classBandwidth(QosProfileClassBandwidthTypePercentageClassClassBandwidthArgs.builder()
                    .egressGuaranteed(0)
                    .egressMax(0)
                    .build())
                .name("string")
                .priority("string")
                .build())
            .build())
        .build())
    .device("string")
    .folder("string")
    .name("string")
    .snippet("string")
    .build());
qos_profile_resource = scm.QosProfile("qosProfileResource",
    aggregate_bandwidth={
        "egress_guaranteed": 0,
        "egress_max": 0,
    },
    class_bandwidth_type={
        "mbps": {
            "classes": [{
                "class_bandwidth": {
                    "egress_guaranteed": 0,
                    "egress_max": 0,
                },
                "name": "string",
                "priority": "string",
            }],
        },
        "percentage": {
            "classes": [{
                "class_bandwidth": {
                    "egress_guaranteed": 0,
                    "egress_max": 0,
                },
                "name": "string",
                "priority": "string",
            }],
        },
    },
    device="string",
    folder="string",
    name="string",
    snippet="string")
const qosProfileResource = new scm.QosProfile("qosProfileResource", {
    aggregateBandwidth: {
        egressGuaranteed: 0,
        egressMax: 0,
    },
    classBandwidthType: {
        mbps: {
            classes: [{
                classBandwidth: {
                    egressGuaranteed: 0,
                    egressMax: 0,
                },
                name: "string",
                priority: "string",
            }],
        },
        percentage: {
            classes: [{
                classBandwidth: {
                    egressGuaranteed: 0,
                    egressMax: 0,
                },
                name: "string",
                priority: "string",
            }],
        },
    },
    device: "string",
    folder: "string",
    name: "string",
    snippet: "string",
});
type: scm:QosProfile
properties:
    aggregateBandwidth:
        egressGuaranteed: 0
        egressMax: 0
    classBandwidthType:
        mbps:
            classes:
                - classBandwidth:
                    egressGuaranteed: 0
                    egressMax: 0
                  name: string
                  priority: string
        percentage:
            classes:
                - classBandwidth:
                    egressGuaranteed: 0
                    egressMax: 0
                  name: string
                  priority: string
    device: string
    folder: string
    name: string
    snippet: string
QosProfile 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 QosProfile resource accepts the following input properties:
- AggregateBandwidth QosProfile Aggregate Bandwidth 
- The AggregateBandwidth param.
- ClassBandwidth QosType Profile Class Bandwidth Type 
- The ClassBandwidthType param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Name string
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
- Snippet string
- The Snippet param.
- AggregateBandwidth QosProfile Aggregate Bandwidth Args 
- The AggregateBandwidth param.
- ClassBandwidth QosType Profile Class Bandwidth Type Args 
- The ClassBandwidthType param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Name string
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
- Snippet string
- The Snippet param.
- aggregateBandwidth QosProfile Aggregate Bandwidth 
- The AggregateBandwidth param.
- classBandwidth QosType Profile Class Bandwidth Type 
- The ClassBandwidthType param.
- device String
- The Device param.
- folder String
- The Folder param.
- name String
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
- snippet String
- The Snippet param.
- aggregateBandwidth QosProfile Aggregate Bandwidth 
- The AggregateBandwidth param.
- classBandwidth QosType Profile Class Bandwidth Type 
- The ClassBandwidthType param.
- device string
- The Device param.
- folder string
- The Folder param.
- name string
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
- snippet string
- The Snippet param.
- aggregate_bandwidth QosProfile Aggregate Bandwidth Args 
- The AggregateBandwidth param.
- class_bandwidth_ Qostype Profile Class Bandwidth Type Args 
- The ClassBandwidthType param.
- device str
- The Device param.
- folder str
- The Folder param.
- name str
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
- snippet str
- The Snippet param.
- aggregateBandwidth Property Map
- The AggregateBandwidth param.
- classBandwidth Property MapType 
- The ClassBandwidthType param.
- device String
- The Device param.
- folder String
- The Folder param.
- name String
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
- snippet String
- The Snippet param.
Outputs
All input properties are implicitly available as output properties. Additionally, the QosProfile resource produces the following output properties:
Look up Existing QosProfile Resource
Get an existing QosProfile 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?: QosProfileState, opts?: CustomResourceOptions): QosProfile@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        aggregate_bandwidth: Optional[QosProfileAggregateBandwidthArgs] = None,
        class_bandwidth_type: Optional[QosProfileClassBandwidthTypeArgs] = None,
        device: Optional[str] = None,
        folder: Optional[str] = None,
        name: Optional[str] = None,
        snippet: Optional[str] = None,
        tfid: Optional[str] = None) -> QosProfilefunc GetQosProfile(ctx *Context, name string, id IDInput, state *QosProfileState, opts ...ResourceOption) (*QosProfile, error)public static QosProfile Get(string name, Input<string> id, QosProfileState? state, CustomResourceOptions? opts = null)public static QosProfile get(String name, Output<String> id, QosProfileState state, CustomResourceOptions options)resources:  _:    type: scm:QosProfile    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.
- AggregateBandwidth QosProfile Aggregate Bandwidth 
- The AggregateBandwidth param.
- ClassBandwidth QosType Profile Class Bandwidth Type 
- The ClassBandwidthType param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Name string
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
- Snippet string
- The Snippet param.
- Tfid string
- AggregateBandwidth QosProfile Aggregate Bandwidth Args 
- The AggregateBandwidth param.
- ClassBandwidth QosType Profile Class Bandwidth Type Args 
- The ClassBandwidthType param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Name string
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
- Snippet string
- The Snippet param.
- Tfid string
- aggregateBandwidth QosProfile Aggregate Bandwidth 
- The AggregateBandwidth param.
- classBandwidth QosType Profile Class Bandwidth Type 
- The ClassBandwidthType param.
- device String
- The Device param.
- folder String
- The Folder param.
- name String
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
- snippet String
- The Snippet param.
- tfid String
- aggregateBandwidth QosProfile Aggregate Bandwidth 
- The AggregateBandwidth param.
- classBandwidth QosType Profile Class Bandwidth Type 
- The ClassBandwidthType param.
- device string
- The Device param.
- folder string
- The Folder param.
- name string
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
- snippet string
- The Snippet param.
- tfid string
- aggregate_bandwidth QosProfile Aggregate Bandwidth Args 
- The AggregateBandwidth param.
- class_bandwidth_ Qostype Profile Class Bandwidth Type Args 
- The ClassBandwidthType param.
- device str
- The Device param.
- folder str
- The Folder param.
- name str
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
- snippet str
- The Snippet param.
- tfid str
- aggregateBandwidth Property Map
- The AggregateBandwidth param.
- classBandwidth Property MapType 
- The ClassBandwidthType param.
- device String
- The Device param.
- folder String
- The Folder param.
- name String
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 31 characters.
- snippet String
- The Snippet param.
- tfid String
Supporting Types
QosProfileAggregateBandwidth, QosProfileAggregateBandwidthArgs        
- EgressGuaranteed int
- guaranteed sending bandwidth in mbps. Value must be between 0 and 16000.
- EgressMax int
- max sending bandwidth in mbps. Value must be between 0 and 60000.
- EgressGuaranteed int
- guaranteed sending bandwidth in mbps. Value must be between 0 and 16000.
- EgressMax int
- max sending bandwidth in mbps. Value must be between 0 and 60000.
- egressGuaranteed Integer
- guaranteed sending bandwidth in mbps. Value must be between 0 and 16000.
- egressMax Integer
- max sending bandwidth in mbps. Value must be between 0 and 60000.
- egressGuaranteed number
- guaranteed sending bandwidth in mbps. Value must be between 0 and 16000.
- egressMax number
- max sending bandwidth in mbps. Value must be between 0 and 60000.
- egress_guaranteed int
- guaranteed sending bandwidth in mbps. Value must be between 0 and 16000.
- egress_max int
- max sending bandwidth in mbps. Value must be between 0 and 60000.
- egressGuaranteed Number
- guaranteed sending bandwidth in mbps. Value must be between 0 and 16000.
- egressMax Number
- max sending bandwidth in mbps. Value must be between 0 and 60000.
QosProfileClassBandwidthType, QosProfileClassBandwidthTypeArgs          
- Mbps
QosProfile Class Bandwidth Type Mbps 
- The Mbps param. Ensure that only one of the following is specified: mbps,percentage
- Percentage
QosProfile Class Bandwidth Type Percentage 
- The Percentage param. Ensure that only one of the following is specified: mbps,percentage
- Mbps
QosProfile Class Bandwidth Type Mbps 
- The Mbps param. Ensure that only one of the following is specified: mbps,percentage
- Percentage
QosProfile Class Bandwidth Type Percentage 
- The Percentage param. Ensure that only one of the following is specified: mbps,percentage
- mbps
QosProfile Class Bandwidth Type Mbps 
- The Mbps param. Ensure that only one of the following is specified: mbps,percentage
- percentage
QosProfile Class Bandwidth Type Percentage 
- The Percentage param. Ensure that only one of the following is specified: mbps,percentage
- mbps
QosProfile Class Bandwidth Type Mbps 
- The Mbps param. Ensure that only one of the following is specified: mbps,percentage
- percentage
QosProfile Class Bandwidth Type Percentage 
- The Percentage param. Ensure that only one of the following is specified: mbps,percentage
- mbps
QosProfile Class Bandwidth Type Mbps 
- The Mbps param. Ensure that only one of the following is specified: mbps,percentage
- percentage
QosProfile Class Bandwidth Type Percentage 
- The Percentage param. Ensure that only one of the following is specified: mbps,percentage
- mbps Property Map
- The Mbps param. Ensure that only one of the following is specified: mbps,percentage
- percentage Property Map
- The Percentage param. Ensure that only one of the following is specified: mbps,percentage
QosProfileClassBandwidthTypeMbps, QosProfileClassBandwidthTypeMbpsArgs            
- Classes
List<QosProfile Class Bandwidth Type Mbps Class> 
- QoS setting for traffic classes.
- Classes
[]QosProfile Class Bandwidth Type Mbps Class 
- QoS setting for traffic classes.
- classes
List<QosProfile Class Bandwidth Type Mbps Class> 
- QoS setting for traffic classes.
- classes
QosProfile Class Bandwidth Type Mbps Class[] 
- QoS setting for traffic classes.
- classes
Sequence[QosProfile Class Bandwidth Type Mbps Class] 
- QoS setting for traffic classes.
- classes List<Property Map>
- QoS setting for traffic classes.
QosProfileClassBandwidthTypeMbpsClass, QosProfileClassBandwidthTypeMbpsClassArgs              
- ClassBandwidth QosProfile Class Bandwidth Type Mbps Class Class Bandwidth 
- The ClassBandwidth param.
- Name string
- Traffic class. String length must not exceed 31 characters.
- Priority string
- traffic class priority. String must be one of these: "real-time","high","medium","low". Default:"medium".
- ClassBandwidth QosProfile Class Bandwidth Type Mbps Class Class Bandwidth 
- The ClassBandwidth param.
- Name string
- Traffic class. String length must not exceed 31 characters.
- Priority string
- traffic class priority. String must be one of these: "real-time","high","medium","low". Default:"medium".
- classBandwidth QosProfile Class Bandwidth Type Mbps Class Class Bandwidth 
- The ClassBandwidth param.
- name String
- Traffic class. String length must not exceed 31 characters.
- priority String
- traffic class priority. String must be one of these: "real-time","high","medium","low". Default:"medium".
- classBandwidth QosProfile Class Bandwidth Type Mbps Class Class Bandwidth 
- The ClassBandwidth param.
- name string
- Traffic class. String length must not exceed 31 characters.
- priority string
- traffic class priority. String must be one of these: "real-time","high","medium","low". Default:"medium".
- class_bandwidth QosProfile Class Bandwidth Type Mbps Class Class Bandwidth 
- The ClassBandwidth param.
- name str
- Traffic class. String length must not exceed 31 characters.
- priority str
- traffic class priority. String must be one of these: "real-time","high","medium","low". Default:"medium".
- classBandwidth Property Map
- The ClassBandwidth param.
- name String
- Traffic class. String length must not exceed 31 characters.
- priority String
- traffic class priority. String must be one of these: "real-time","high","medium","low". Default:"medium".
QosProfileClassBandwidthTypeMbpsClassClassBandwidth, QosProfileClassBandwidthTypeMbpsClassClassBandwidthArgs                  
- EgressGuaranteed int
- guaranteed sending bandwidth in mbps. Value must be between 0 and 60000.
- EgressMax int
- max sending bandwidth in mbps. Value must be between 0 and 60000.
- EgressGuaranteed int
- guaranteed sending bandwidth in mbps. Value must be between 0 and 60000.
- EgressMax int
- max sending bandwidth in mbps. Value must be between 0 and 60000.
- egressGuaranteed Integer
- guaranteed sending bandwidth in mbps. Value must be between 0 and 60000.
- egressMax Integer
- max sending bandwidth in mbps. Value must be between 0 and 60000.
- egressGuaranteed number
- guaranteed sending bandwidth in mbps. Value must be between 0 and 60000.
- egressMax number
- max sending bandwidth in mbps. Value must be between 0 and 60000.
- egress_guaranteed int
- guaranteed sending bandwidth in mbps. Value must be between 0 and 60000.
- egress_max int
- max sending bandwidth in mbps. Value must be between 0 and 60000.
- egressGuaranteed Number
- guaranteed sending bandwidth in mbps. Value must be between 0 and 60000.
- egressMax Number
- max sending bandwidth in mbps. Value must be between 0 and 60000.
QosProfileClassBandwidthTypePercentage, QosProfileClassBandwidthTypePercentageArgs            
- Classes
List<QosProfile Class Bandwidth Type Percentage Class> 
- QoS setting for traffic classes.
- Classes
[]QosProfile Class Bandwidth Type Percentage Class 
- QoS setting for traffic classes.
- classes
List<QosProfile Class Bandwidth Type Percentage Class> 
- QoS setting for traffic classes.
- classes
QosProfile Class Bandwidth Type Percentage Class[] 
- QoS setting for traffic classes.
- classes
Sequence[QosProfile Class Bandwidth Type Percentage Class] 
- QoS setting for traffic classes.
- classes List<Property Map>
- QoS setting for traffic classes.
QosProfileClassBandwidthTypePercentageClass, QosProfileClassBandwidthTypePercentageClassArgs              
- ClassBandwidth QosProfile Class Bandwidth Type Percentage Class Class Bandwidth 
- The ClassBandwidth param.
- Name string
- Traffic class. String length must not exceed 31 characters.
- Priority string
- traffic class priority. String must be one of these: "real-time","high","medium","low". Default:"medium".
- ClassBandwidth QosProfile Class Bandwidth Type Percentage Class Class Bandwidth 
- The ClassBandwidth param.
- Name string
- Traffic class. String length must not exceed 31 characters.
- Priority string
- traffic class priority. String must be one of these: "real-time","high","medium","low". Default:"medium".
- classBandwidth QosProfile Class Bandwidth Type Percentage Class Class Bandwidth 
- The ClassBandwidth param.
- name String
- Traffic class. String length must not exceed 31 characters.
- priority String
- traffic class priority. String must be one of these: "real-time","high","medium","low". Default:"medium".
- classBandwidth QosProfile Class Bandwidth Type Percentage Class Class Bandwidth 
- The ClassBandwidth param.
- name string
- Traffic class. String length must not exceed 31 characters.
- priority string
- traffic class priority. String must be one of these: "real-time","high","medium","low". Default:"medium".
- class_bandwidth QosProfile Class Bandwidth Type Percentage Class Class Bandwidth 
- The ClassBandwidth param.
- name str
- Traffic class. String length must not exceed 31 characters.
- priority str
- traffic class priority. String must be one of these: "real-time","high","medium","low". Default:"medium".
- classBandwidth Property Map
- The ClassBandwidth param.
- name String
- Traffic class. String length must not exceed 31 characters.
- priority String
- traffic class priority. String must be one of these: "real-time","high","medium","low". Default:"medium".
QosProfileClassBandwidthTypePercentageClassClassBandwidth, QosProfileClassBandwidthTypePercentageClassClassBandwidthArgs                  
- EgressGuaranteed int
- guaranteed sending bandwidth in percentage. Value must be between 0 and 100.
- EgressMax int
- max sending bandwidth in percentage. Value must be between 0 and 100.
- EgressGuaranteed int
- guaranteed sending bandwidth in percentage. Value must be between 0 and 100.
- EgressMax int
- max sending bandwidth in percentage. Value must be between 0 and 100.
- egressGuaranteed Integer
- guaranteed sending bandwidth in percentage. Value must be between 0 and 100.
- egressMax Integer
- max sending bandwidth in percentage. Value must be between 0 and 100.
- egressGuaranteed number
- guaranteed sending bandwidth in percentage. Value must be between 0 and 100.
- egressMax number
- max sending bandwidth in percentage. Value must be between 0 and 100.
- egress_guaranteed int
- guaranteed sending bandwidth in percentage. Value must be between 0 and 100.
- egress_max int
- max sending bandwidth in percentage. Value must be between 0 and 100.
- egressGuaranteed Number
- guaranteed sending bandwidth in percentage. Value must be between 0 and 100.
- egressMax Number
- max sending bandwidth in percentage. Value must be between 0 and 100.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the scmTerraform Provider.
