1. Packages
  2. Strata Cloud Manager (Palo Alto SCM)
  3. API Docs
  4. QosProfile
Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi

scm.QosProfile

Explore with Pulumi AI

scm logo
Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi

    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:

    AggregateBandwidth QosProfileAggregateBandwidth
    The AggregateBandwidth param.
    ClassBandwidthType QosProfileClassBandwidthType
    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 QosProfileAggregateBandwidthArgs
    The AggregateBandwidth param.
    ClassBandwidthType QosProfileClassBandwidthTypeArgs
    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 QosProfileAggregateBandwidth
    The AggregateBandwidth param.
    classBandwidthType QosProfileClassBandwidthType
    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 QosProfileAggregateBandwidth
    The AggregateBandwidth param.
    classBandwidthType QosProfileClassBandwidthType
    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 QosProfileAggregateBandwidthArgs
    The AggregateBandwidth param.
    class_bandwidth_type QosProfileClassBandwidthTypeArgs
    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.
    classBandwidthType Property Map
    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:

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    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.
    The following state arguments are supported:
    AggregateBandwidth QosProfileAggregateBandwidth
    The AggregateBandwidth param.
    ClassBandwidthType QosProfileClassBandwidthType
    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 QosProfileAggregateBandwidthArgs
    The AggregateBandwidth param.
    ClassBandwidthType QosProfileClassBandwidthTypeArgs
    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 QosProfileAggregateBandwidth
    The AggregateBandwidth param.
    classBandwidthType QosProfileClassBandwidthType
    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 QosProfileAggregateBandwidth
    The AggregateBandwidth param.
    classBandwidthType QosProfileClassBandwidthType
    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 QosProfileAggregateBandwidthArgs
    The AggregateBandwidth param.
    class_bandwidth_type QosProfileClassBandwidthTypeArgs
    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.
    classBandwidthType Property Map
    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 QosProfileClassBandwidthTypeMbps
    The Mbps param. Ensure that only one of the following is specified: mbps, percentage
    Percentage QosProfileClassBandwidthTypePercentage
    The Percentage param. Ensure that only one of the following is specified: mbps, percentage
    Mbps QosProfileClassBandwidthTypeMbps
    The Mbps param. Ensure that only one of the following is specified: mbps, percentage
    Percentage QosProfileClassBandwidthTypePercentage
    The Percentage param. Ensure that only one of the following is specified: mbps, percentage
    mbps QosProfileClassBandwidthTypeMbps
    The Mbps param. Ensure that only one of the following is specified: mbps, percentage
    percentage QosProfileClassBandwidthTypePercentage
    The Percentage param. Ensure that only one of the following is specified: mbps, percentage
    mbps QosProfileClassBandwidthTypeMbps
    The Mbps param. Ensure that only one of the following is specified: mbps, percentage
    percentage QosProfileClassBandwidthTypePercentage
    The Percentage param. Ensure that only one of the following is specified: mbps, percentage
    mbps QosProfileClassBandwidthTypeMbps
    The Mbps param. Ensure that only one of the following is specified: mbps, percentage
    percentage QosProfileClassBandwidthTypePercentage
    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 []QosProfileClassBandwidthTypeMbpsClass
    QoS setting for traffic classes.
    classes QosProfileClassBandwidthTypeMbpsClass[]
    QoS setting for traffic classes.
    classes List<Property Map>
    QoS setting for traffic classes.

    QosProfileClassBandwidthTypeMbpsClass, QosProfileClassBandwidthTypeMbpsClassArgs

    ClassBandwidth QosProfileClassBandwidthTypeMbpsClassClassBandwidth
    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 QosProfileClassBandwidthTypeMbpsClassClassBandwidth
    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 QosProfileClassBandwidthTypeMbpsClassClassBandwidth
    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 QosProfileClassBandwidthTypeMbpsClassClassBandwidth
    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 QosProfileClassBandwidthTypeMbpsClassClassBandwidth
    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<Property Map>
    QoS setting for traffic classes.

    QosProfileClassBandwidthTypePercentageClass, QosProfileClassBandwidthTypePercentageClassArgs

    ClassBandwidth QosProfileClassBandwidthTypePercentageClassClassBandwidth
    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 QosProfileClassBandwidthTypePercentageClassClassBandwidth
    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 QosProfileClassBandwidthTypePercentageClassClassBandwidth
    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 QosProfileClassBandwidthTypePercentageClassClassBandwidth
    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 QosProfileClassBandwidthTypePercentageClassClassBandwidth
    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 scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi