Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi
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=scm.QosProfileAggregateBandwidthArgs(
egress_guaranteed=0,
egress_max=0,
),
class_bandwidth_type=scm.QosProfileClassBandwidthTypeArgs(
mbps=scm.QosProfileClassBandwidthTypeMbpsArgs(
classes=[scm.QosProfileClassBandwidthTypeMbpsClassArgs(
class_bandwidth=scm.QosProfileClassBandwidthTypeMbpsClassClassBandwidthArgs(
egress_guaranteed=0,
egress_max=0,
),
name="string",
priority="string",
)],
),
percentage=scm.QosProfileClassBandwidthTypePercentageArgs(
classes=[scm.QosProfileClassBandwidthTypePercentageClassArgs(
class_bandwidth=scm.QosProfileClassBandwidthTypePercentageClassClassBandwidthArgs(
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
The QosProfile resource accepts the following input properties:
- Aggregate
Bandwidth QosProfile Aggregate Bandwidth - The AggregateBandwidth param.
- Class
Bandwidth 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 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 - The AggregateBandwidth param.
- class
Bandwidth 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 - The AggregateBandwidth param.
- class
Bandwidth 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.
- aggregate
Bandwidth Property Map - The AggregateBandwidth param.
- class
Bandwidth 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) -> QosProfile
func 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)
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.
- Aggregate
Bandwidth QosProfile Aggregate Bandwidth - The AggregateBandwidth param.
- Class
Bandwidth 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 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 - The AggregateBandwidth param.
- class
Bandwidth 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 - The AggregateBandwidth param.
- class
Bandwidth 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
- aggregate
Bandwidth Property Map - The AggregateBandwidth param.
- class
Bandwidth 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
- 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.
- 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.
- egress
Guaranteed Integer - guaranteed sending bandwidth in mbps. Value must be between 0 and 16000.
- egress
Max Integer - max sending bandwidth in mbps. Value must be between 0 and 60000.
- egress
Guaranteed number - guaranteed sending bandwidth in mbps. Value must be between 0 and 16000.
- egress
Max 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.
- egress
Guaranteed Number - guaranteed sending bandwidth in mbps. Value must be between 0 and 16000.
- egress
Max Number - max sending bandwidth in mbps. Value must be between 0 and 60000.
QosProfileClassBandwidthType, QosProfileClassBandwidthTypeArgs
- Mbps
Qos
Profile Class Bandwidth Type Mbps - The Mbps param. Ensure that only one of the following is specified:
mbps
,percentage
- Percentage
Qos
Profile Class Bandwidth Type Percentage - The Percentage param. Ensure that only one of the following is specified:
mbps
,percentage
- Mbps
Qos
Profile Class Bandwidth Type Mbps - The Mbps param. Ensure that only one of the following is specified:
mbps
,percentage
- Percentage
Qos
Profile Class Bandwidth Type Percentage - The Percentage param. Ensure that only one of the following is specified:
mbps
,percentage
- mbps
Qos
Profile Class Bandwidth Type Mbps - The Mbps param. Ensure that only one of the following is specified:
mbps
,percentage
- percentage
Qos
Profile Class Bandwidth Type Percentage - The Percentage param. Ensure that only one of the following is specified:
mbps
,percentage
- mbps
Qos
Profile Class Bandwidth Type Mbps - The Mbps param. Ensure that only one of the following is specified:
mbps
,percentage
- percentage
Qos
Profile Class Bandwidth Type Percentage - The Percentage param. Ensure that only one of the following is specified:
mbps
,percentage
- mbps
Qos
Profile Class Bandwidth Type Mbps - The Mbps param. Ensure that only one of the following is specified:
mbps
,percentage
- percentage
Qos
Profile 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<Qos
Profile Class Bandwidth Type Mbps Class> - QoS setting for traffic classes.
- Classes
[]Qos
Profile Class Bandwidth Type Mbps Class - QoS setting for traffic classes.
- classes
List<Qos
Profile Class Bandwidth Type Mbps Class> - QoS setting for traffic classes.
- classes
Qos
Profile Class Bandwidth Type Mbps Class[] - QoS setting for traffic classes.
- classes
Sequence[Qos
Profile Class Bandwidth Type Mbps Class] - QoS setting for traffic classes.
- classes List<Property Map>
- QoS setting for traffic classes.
QosProfileClassBandwidthTypeMbpsClass, QosProfileClassBandwidthTypeMbpsClassArgs
- Class
Bandwidth 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 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 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 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"
.
- class
Bandwidth 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
- 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.
- 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.
- egress
Guaranteed Integer - guaranteed sending bandwidth in mbps. Value must be between 0 and 60000.
- egress
Max Integer - max sending bandwidth in mbps. Value must be between 0 and 60000.
- egress
Guaranteed number - guaranteed sending bandwidth in mbps. Value must be between 0 and 60000.
- egress
Max 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.
- egress
Guaranteed Number - guaranteed sending bandwidth in mbps. Value must be between 0 and 60000.
- egress
Max Number - max sending bandwidth in mbps. Value must be between 0 and 60000.
QosProfileClassBandwidthTypePercentage, QosProfileClassBandwidthTypePercentageArgs
- Classes
List<Qos
Profile Class Bandwidth Type Percentage Class> - QoS setting for traffic classes.
- Classes
[]Qos
Profile Class Bandwidth Type Percentage Class - QoS setting for traffic classes.
- classes
List<Qos
Profile Class Bandwidth Type Percentage Class> - QoS setting for traffic classes.
- classes
Qos
Profile Class Bandwidth Type Percentage Class[] - QoS setting for traffic classes.
- classes
Sequence[Qos
Profile Class Bandwidth Type Percentage Class] - QoS setting for traffic classes.
- classes List<Property Map>
- QoS setting for traffic classes.
QosProfileClassBandwidthTypePercentageClass, QosProfileClassBandwidthTypePercentageClassArgs
- Class
Bandwidth 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 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 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 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"
.
- class
Bandwidth 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
- 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.
- 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.
- egress
Guaranteed Integer - guaranteed sending bandwidth in percentage. Value must be between 0 and 100.
- egress
Max Integer - max sending bandwidth in percentage. Value must be between 0 and 100.
- egress
Guaranteed number - guaranteed sending bandwidth in percentage. Value must be between 0 and 100.
- egress
Max 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.
- egress
Guaranteed Number - guaranteed sending bandwidth in percentage. Value must be between 0 and 100.
- egress
Max 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
scm
Terraform Provider.