sdwan.ApplicationPriorityQosPolicyProfileParcel
Explore with Pulumi AI
This resource can manage a Application Priority QoS Policy profile parcel.
- Minimum SD-WAN Manager version:
20.12.0
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.ApplicationPriorityQosPolicyProfileParcel;
import com.pulumi.sdwan.ApplicationPriorityQosPolicyProfileParcelArgs;
import com.pulumi.sdwan.inputs.ApplicationPriorityQosPolicyProfileParcelQosSchedulerArgs;
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 ApplicationPriorityQosPolicyProfileParcel("example", ApplicationPriorityQosPolicyProfileParcelArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.targetInterfaces("{{interface_var_1}}")
.qosSchedulers(ApplicationPriorityQosPolicyProfileParcelQosSchedulerArgs.builder()
.drops("tail-drop")
.queue("0")
.bandwidth("10")
.scheduling_type("llq")
.build())
.build());
}
}
resources:
example:
type: sdwan:ApplicationPriorityQosPolicyProfileParcel
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
targetInterfaces:
- '{{interface_var_1}}'
qosSchedulers:
- drops: tail-drop
queue: '0'
bandwidth: '10'
scheduling_type: llq
Create ApplicationPriorityQosPolicyProfileParcel Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ApplicationPriorityQosPolicyProfileParcel(name: string, args: ApplicationPriorityQosPolicyProfileParcelArgs, opts?: CustomResourceOptions);
@overload
def ApplicationPriorityQosPolicyProfileParcel(resource_name: str,
args: ApplicationPriorityQosPolicyProfileParcelArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ApplicationPriorityQosPolicyProfileParcel(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
qos_schedulers: Optional[Sequence[ApplicationPriorityQosPolicyProfileParcelQosSchedulerArgs]] = None,
target_interface_variable: Optional[str] = None,
target_interfaces: Optional[Sequence[str]] = None)
func NewApplicationPriorityQosPolicyProfileParcel(ctx *Context, name string, args ApplicationPriorityQosPolicyProfileParcelArgs, opts ...ResourceOption) (*ApplicationPriorityQosPolicyProfileParcel, error)
public ApplicationPriorityQosPolicyProfileParcel(string name, ApplicationPriorityQosPolicyProfileParcelArgs args, CustomResourceOptions? opts = null)
public ApplicationPriorityQosPolicyProfileParcel(String name, ApplicationPriorityQosPolicyProfileParcelArgs args)
public ApplicationPriorityQosPolicyProfileParcel(String name, ApplicationPriorityQosPolicyProfileParcelArgs args, CustomResourceOptions options)
type: sdwan:ApplicationPriorityQosPolicyProfileParcel
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 ApplicationPriorityQosPolicyProfileParcelArgs
- 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 ApplicationPriorityQosPolicyProfileParcelArgs
- 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 ApplicationPriorityQosPolicyProfileParcelArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApplicationPriorityQosPolicyProfileParcelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApplicationPriorityQosPolicyProfileParcelArgs
- 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 applicationPriorityQosPolicyProfileParcelResource = new Sdwan.ApplicationPriorityQosPolicyProfileParcel("applicationPriorityQosPolicyProfileParcelResource", new()
{
FeatureProfileId = "string",
Description = "string",
Name = "string",
QosSchedulers = new[]
{
new Sdwan.Inputs.ApplicationPriorityQosPolicyProfileParcelQosSchedulerArgs
{
Bandwidth = "string",
Drops = "string",
ForwardingClassId = "string",
Queue = "string",
SchedulingType = "string",
},
},
TargetInterfaceVariable = "string",
TargetInterfaces = new[]
{
"string",
},
});
example, err := sdwan.NewApplicationPriorityQosPolicyProfileParcel(ctx, "applicationPriorityQosPolicyProfileParcelResource", &sdwan.ApplicationPriorityQosPolicyProfileParcelArgs{
FeatureProfileId: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
QosSchedulers: sdwan.ApplicationPriorityQosPolicyProfileParcelQosSchedulerArray{
&sdwan.ApplicationPriorityQosPolicyProfileParcelQosSchedulerArgs{
Bandwidth: pulumi.String("string"),
Drops: pulumi.String("string"),
ForwardingClassId: pulumi.String("string"),
Queue: pulumi.String("string"),
SchedulingType: pulumi.String("string"),
},
},
TargetInterfaceVariable: pulumi.String("string"),
TargetInterfaces: pulumi.StringArray{
pulumi.String("string"),
},
})
var applicationPriorityQosPolicyProfileParcelResource = new ApplicationPriorityQosPolicyProfileParcel("applicationPriorityQosPolicyProfileParcelResource", ApplicationPriorityQosPolicyProfileParcelArgs.builder()
.featureProfileId("string")
.description("string")
.name("string")
.qosSchedulers(ApplicationPriorityQosPolicyProfileParcelQosSchedulerArgs.builder()
.bandwidth("string")
.drops("string")
.forwardingClassId("string")
.queue("string")
.schedulingType("string")
.build())
.targetInterfaceVariable("string")
.targetInterfaces("string")
.build());
application_priority_qos_policy_profile_parcel_resource = sdwan.ApplicationPriorityQosPolicyProfileParcel("applicationPriorityQosPolicyProfileParcelResource",
feature_profile_id="string",
description="string",
name="string",
qos_schedulers=[sdwan.ApplicationPriorityQosPolicyProfileParcelQosSchedulerArgs(
bandwidth="string",
drops="string",
forwarding_class_id="string",
queue="string",
scheduling_type="string",
)],
target_interface_variable="string",
target_interfaces=["string"])
const applicationPriorityQosPolicyProfileParcelResource = new sdwan.ApplicationPriorityQosPolicyProfileParcel("applicationPriorityQosPolicyProfileParcelResource", {
featureProfileId: "string",
description: "string",
name: "string",
qosSchedulers: [{
bandwidth: "string",
drops: "string",
forwardingClassId: "string",
queue: "string",
schedulingType: "string",
}],
targetInterfaceVariable: "string",
targetInterfaces: ["string"],
});
type: sdwan:ApplicationPriorityQosPolicyProfileParcel
properties:
description: string
featureProfileId: string
name: string
qosSchedulers:
- bandwidth: string
drops: string
forwardingClassId: string
queue: string
schedulingType: string
targetInterfaceVariable: string
targetInterfaces:
- string
ApplicationPriorityQosPolicyProfileParcel 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 ApplicationPriorityQosPolicyProfileParcel resource accepts the following input properties:
- Feature
Profile stringId - Feature Profile ID
- Description string
- The description of the profile parcel
- Name string
- The name of the profile parcel
- Qos
Schedulers List<ApplicationPriority Qos Policy Profile Parcel Qos Scheduler> - qosSchedulers
- Target
Interface stringVariable - Variable name
- Target
Interfaces List<string> - interfaces
- Feature
Profile stringId - Feature Profile ID
- Description string
- The description of the profile parcel
- Name string
- The name of the profile parcel
- Qos
Schedulers []ApplicationPriority Qos Policy Profile Parcel Qos Scheduler Args - qosSchedulers
- Target
Interface stringVariable - Variable name
- Target
Interfaces []string - interfaces
- feature
Profile StringId - Feature Profile ID
- description String
- The description of the profile parcel
- name String
- The name of the profile parcel
- qos
Schedulers List<ApplicationPriority Qos Policy Profile Parcel Qos Scheduler> - qosSchedulers
- target
Interface StringVariable - Variable name
- target
Interfaces List<String> - interfaces
- feature
Profile stringId - Feature Profile ID
- description string
- The description of the profile parcel
- name string
- The name of the profile parcel
- qos
Schedulers ApplicationPriority Qos Policy Profile Parcel Qos Scheduler[] - qosSchedulers
- target
Interface stringVariable - Variable name
- target
Interfaces string[] - interfaces
- feature_
profile_ strid - Feature Profile ID
- description str
- The description of the profile parcel
- name str
- The name of the profile parcel
- qos_
schedulers Sequence[ApplicationPriority Qos Policy Profile Parcel Qos Scheduler Args] - qosSchedulers
- target_
interface_ strvariable - Variable name
- target_
interfaces Sequence[str] - interfaces
- feature
Profile StringId - Feature Profile ID
- description String
- The description of the profile parcel
- name String
- The name of the profile parcel
- qos
Schedulers List<Property Map> - qosSchedulers
- target
Interface StringVariable - Variable name
- target
Interfaces List<String> - interfaces
Outputs
All input properties are implicitly available as output properties. Additionally, the ApplicationPriorityQosPolicyProfileParcel resource produces the following output properties:
Look up Existing ApplicationPriorityQosPolicyProfileParcel Resource
Get an existing ApplicationPriorityQosPolicyProfileParcel 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?: ApplicationPriorityQosPolicyProfileParcelState, opts?: CustomResourceOptions): ApplicationPriorityQosPolicyProfileParcel
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
feature_profile_id: Optional[str] = None,
name: Optional[str] = None,
qos_schedulers: Optional[Sequence[ApplicationPriorityQosPolicyProfileParcelQosSchedulerArgs]] = None,
target_interface_variable: Optional[str] = None,
target_interfaces: Optional[Sequence[str]] = None,
version: Optional[int] = None) -> ApplicationPriorityQosPolicyProfileParcel
func GetApplicationPriorityQosPolicyProfileParcel(ctx *Context, name string, id IDInput, state *ApplicationPriorityQosPolicyProfileParcelState, opts ...ResourceOption) (*ApplicationPriorityQosPolicyProfileParcel, error)
public static ApplicationPriorityQosPolicyProfileParcel Get(string name, Input<string> id, ApplicationPriorityQosPolicyProfileParcelState? state, CustomResourceOptions? opts = null)
public static ApplicationPriorityQosPolicyProfileParcel get(String name, Output<String> id, ApplicationPriorityQosPolicyProfileParcelState 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 profile parcel
- Feature
Profile stringId - Feature Profile ID
- Name string
- The name of the profile parcel
- Qos
Schedulers List<ApplicationPriority Qos Policy Profile Parcel Qos Scheduler> - qosSchedulers
- Target
Interface stringVariable - Variable name
- Target
Interfaces List<string> - interfaces
- Version int
- The version of the profile parcel
- Description string
- The description of the profile parcel
- Feature
Profile stringId - Feature Profile ID
- Name string
- The name of the profile parcel
- Qos
Schedulers []ApplicationPriority Qos Policy Profile Parcel Qos Scheduler Args - qosSchedulers
- Target
Interface stringVariable - Variable name
- Target
Interfaces []string - interfaces
- Version int
- The version of the profile parcel
- description String
- The description of the profile parcel
- feature
Profile StringId - Feature Profile ID
- name String
- The name of the profile parcel
- qos
Schedulers List<ApplicationPriority Qos Policy Profile Parcel Qos Scheduler> - qosSchedulers
- target
Interface StringVariable - Variable name
- target
Interfaces List<String> - interfaces
- version Integer
- The version of the profile parcel
- description string
- The description of the profile parcel
- feature
Profile stringId - Feature Profile ID
- name string
- The name of the profile parcel
- qos
Schedulers ApplicationPriority Qos Policy Profile Parcel Qos Scheduler[] - qosSchedulers
- target
Interface stringVariable - Variable name
- target
Interfaces string[] - interfaces
- version number
- The version of the profile parcel
- description str
- The description of the profile parcel
- feature_
profile_ strid - Feature Profile ID
- name str
- The name of the profile parcel
- qos_
schedulers Sequence[ApplicationPriority Qos Policy Profile Parcel Qos Scheduler Args] - qosSchedulers
- target_
interface_ strvariable - Variable name
- target_
interfaces Sequence[str] - interfaces
- version int
- The version of the profile parcel
- description String
- The description of the profile parcel
- feature
Profile StringId - Feature Profile ID
- name String
- The name of the profile parcel
- qos
Schedulers List<Property Map> - qosSchedulers
- target
Interface StringVariable - Variable name
- target
Interfaces List<String> - interfaces
- version Number
- The version of the profile parcel
Supporting Types
ApplicationPriorityQosPolicyProfileParcelQosScheduler, ApplicationPriorityQosPolicyProfileParcelQosSchedulerArgs
- Bandwidth string
- bandwidthPercent
- Drops string
- drops
- Forwarding
Class stringId - Queue string
- queue
- Scheduling
Type string - scheduling
- Bandwidth string
- bandwidthPercent
- Drops string
- drops
- Forwarding
Class stringId - Queue string
- queue
- Scheduling
Type string - scheduling
- bandwidth String
- bandwidthPercent
- drops String
- drops
- forwarding
Class StringId - queue String
- queue
- scheduling
Type String - scheduling
- bandwidth string
- bandwidthPercent
- drops string
- drops
- forwarding
Class stringId - queue string
- queue
- scheduling
Type string - scheduling
- bandwidth str
- bandwidthPercent
- drops str
- drops
- forwarding_
class_ strid - queue str
- queue
- scheduling_
type str - scheduling
- bandwidth String
- bandwidthPercent
- drops String
- drops
- forwarding
Class StringId - queue String
- queue
- scheduling
Type String - scheduling
Import
$ pulumi import sdwan:index/applicationPriorityQosPolicyProfileParcel:ApplicationPriorityQosPolicyProfileParcel 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.