OpenStack
getQosDscpMarkingRule
Use this data source to get the ID of an available OpenStack QoS DSCP marking rule.
Example Usage
using Pulumi;
using OpenStack = Pulumi.OpenStack;
class MyStack : Stack
{
public MyStack()
{
var qosDscpMarkingRule1 = Output.Create(OpenStack.Networking.GetQosDscpMarkingRule.InvokeAsync(new OpenStack.Networking.GetQosDscpMarkingRuleArgs
{
DscpMark = 26,
}));
}
}
package main
import (
"github.com/pulumi/pulumi-openstack/sdk/v3/go/openstack/networking"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
opt0 := 26
_, err := networking.LookupQosDscpMarkingRule(ctx, &networking.LookupQosDscpMarkingRuleArgs{
DscpMark: &opt0,
}, nil)
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_openstack as openstack
qos_dscp_marking_rule1 = openstack.networking.get_qos_dscp_marking_rule(dscp_mark=26)
import * as pulumi from "@pulumi/pulumi";
import * as openstack from "@pulumi/openstack";
const qosDscpMarkingRule1 = pulumi.output(openstack.networking.getQosDscpMarkingRule({
dscpMark: 26,
}));
Coming soon!
Using getQosDscpMarkingRule
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getQosDscpMarkingRule(args: GetQosDscpMarkingRuleArgs, opts?: InvokeOptions): Promise<GetQosDscpMarkingRuleResult>
function getQosDscpMarkingRuleOutput(args: GetQosDscpMarkingRuleOutputArgs, opts?: InvokeOptions): Output<GetQosDscpMarkingRuleResult>
def get_qos_dscp_marking_rule(dscp_mark: Optional[int] = None,
qos_policy_id: Optional[str] = None,
region: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetQosDscpMarkingRuleResult
def get_qos_dscp_marking_rule_output(dscp_mark: Optional[pulumi.Input[int]] = None,
qos_policy_id: Optional[pulumi.Input[str]] = None,
region: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetQosDscpMarkingRuleResult]
func LookupQosDscpMarkingRule(ctx *Context, args *LookupQosDscpMarkingRuleArgs, opts ...InvokeOption) (*LookupQosDscpMarkingRuleResult, error)
func LookupQosDscpMarkingRuleOutput(ctx *Context, args *LookupQosDscpMarkingRuleOutputArgs, opts ...InvokeOption) LookupQosDscpMarkingRuleResultOutput
> Note: This function is named LookupQosDscpMarkingRule
in the Go SDK.
public static class GetQosDscpMarkingRule
{
public static Task<GetQosDscpMarkingRuleResult> InvokeAsync(GetQosDscpMarkingRuleArgs args, InvokeOptions? opts = null)
public static Output<GetQosDscpMarkingRuleResult> Invoke(GetQosDscpMarkingRuleInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetQosDscpMarkingRuleResult> getQosDscpMarkingRule(GetQosDscpMarkingRuleArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
Fn::Invoke:
Function: openstack:networking/getQosDscpMarkingRule:getQosDscpMarkingRule
Arguments:
# Arguments dictionary
The following arguments are supported:
- Qos
Policy stringId The QoS policy reference.
- Dscp
Mark int The value of a DSCP mark.
- Region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create a Neutron QoS DSCP marking rule. If omitted, the
region
argument of the provider is used.
- Qos
Policy stringId The QoS policy reference.
- Dscp
Mark int The value of a DSCP mark.
- Region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create a Neutron QoS DSCP marking rule. If omitted, the
region
argument of the provider is used.
- qos
Policy StringId The QoS policy reference.
- dscp
Mark Integer The value of a DSCP mark.
- region String
The region in which to obtain the V2 Networking client. A Networking client is needed to create a Neutron QoS DSCP marking rule. If omitted, the
region
argument of the provider is used.
- qos
Policy stringId The QoS policy reference.
- dscp
Mark number The value of a DSCP mark.
- region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create a Neutron QoS DSCP marking rule. If omitted, the
region
argument of the provider is used.
- qos_
policy_ strid The QoS policy reference.
- dscp_
mark int The value of a DSCP mark.
- region str
The region in which to obtain the V2 Networking client. A Networking client is needed to create a Neutron QoS DSCP marking rule. If omitted, the
region
argument of the provider is used.
- qos
Policy StringId The QoS policy reference.
- dscp
Mark Number The value of a DSCP mark.
- region String
The region in which to obtain the V2 Networking client. A Networking client is needed to create a Neutron QoS DSCP marking rule. If omitted, the
region
argument of the provider is used.
getQosDscpMarkingRule Result
The following output properties are available:
- Dscp
Mark int See Argument Reference above.
- Id string
The provider-assigned unique ID for this managed resource.
- Qos
Policy stringId See Argument Reference above.
- Region string
See Argument Reference above.
- Dscp
Mark int See Argument Reference above.
- Id string
The provider-assigned unique ID for this managed resource.
- Qos
Policy stringId See Argument Reference above.
- Region string
See Argument Reference above.
- dscp
Mark Integer See Argument Reference above.
- id String
The provider-assigned unique ID for this managed resource.
- qos
Policy StringId See Argument Reference above.
- region String
See Argument Reference above.
- dscp
Mark number See Argument Reference above.
- id string
The provider-assigned unique ID for this managed resource.
- qos
Policy stringId See Argument Reference above.
- region string
See Argument Reference above.
- dscp_
mark int See Argument Reference above.
- id str
The provider-assigned unique ID for this managed resource.
- qos_
policy_ strid See Argument Reference above.
- region str
See Argument Reference above.
- dscp
Mark Number See Argument Reference above.
- id String
The provider-assigned unique ID for this managed resource.
- qos
Policy StringId See Argument Reference above.
- region String
See Argument Reference above.
Package Details
- Repository
- https://github.com/pulumi/pulumi-openstack
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
openstack
Terraform Provider.