
com.pulumi.azurenative.mobilenetwork.inputs.PccRuleConfigurationArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.mobilenetwork.inputs;
import com.pulumi.azurenative.mobilenetwork.enums.TrafficControlPermission;
import com.pulumi.azurenative.mobilenetwork.inputs.PccRuleQosPolicyArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.ServiceDataFlowTemplateArgs;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Data flow policy rule configuration
*
*/
public final class PccRuleConfigurationArgs extends com.pulumi.resources.ResourceArgs {
public static final PccRuleConfigurationArgs Empty = new PccRuleConfigurationArgs();
/**
* The name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - `default`, `requested` or `service`.
*
*/
@Import(name="ruleName", required=true)
private Output ruleName;
/**
* @return The name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - `default`, `requested` or `service`.
*
*/
public Output ruleName() {
return this.ruleName;
}
/**
* A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network.
*
*/
@Import(name="rulePrecedence", required=true)
private Output rulePrecedence;
/**
* @return A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network.
*
*/
public Output rulePrecedence() {
return this.rulePrecedence;
}
/**
* The QoS policy to use for packets matching this rule. If this field is null then the parent service will define the QoS settings.
*
*/
@Import(name="ruleQosPolicy")
private @Nullable Output ruleQosPolicy;
/**
* @return The QoS policy to use for packets matching this rule. If this field is null then the parent service will define the QoS settings.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy