| Package | Description |
|---|---|
| com.azure.messaging.servicebus.administration |
Package containing classes managing resources in Azure Service Bus.
|
| com.azure.messaging.servicebus.administration.models |
Package containing classes models for
ServiceBusAdministrationClient
and ServiceBusAdministrationAsyncClient used for managing
Queues, Topics, and Subscriptions. |
| Modifier and Type | Method and Description |
|---|---|
RuleProperties |
ServiceBusAdministrationClient.createRule(String topicName,
String subscriptionName,
String ruleName)
Creates a rule under the given topic and subscription
|
RuleProperties |
ServiceBusAdministrationClient.createRule(String topicName,
String ruleName,
String subscriptionName,
CreateRuleOptions ruleOptions)
Creates a rule with the
CreateRuleOptions. |
RuleProperties |
ServiceBusAdministrationClient.getRule(String topicName,
String subscriptionName,
String ruleName)
Gets a rule from the service namespace.
|
RuleProperties |
ServiceBusAdministrationClient.updateRule(String topicName,
String subscriptionName,
RuleProperties rule)
Updates a rule with the given
RuleProperties. |
| Modifier and Type | Method and Description |
|---|---|
Mono<RuleProperties> |
ServiceBusAdministrationAsyncClient.updateRule(String topicName,
String subscriptionName,
RuleProperties rule)
Updates a rule with the given
RuleProperties. |
RuleProperties |
ServiceBusAdministrationClient.updateRule(String topicName,
String subscriptionName,
RuleProperties rule)
Updates a rule with the given
RuleProperties. |
Mono<com.azure.core.http.rest.Response<RuleProperties>> |
ServiceBusAdministrationAsyncClient.updateRuleWithResponse(String topicName,
String subscriptionName,
RuleProperties rule)
Updates a rule with the given
RuleProperties. |
com.azure.core.http.rest.Response<RuleProperties> |
ServiceBusAdministrationClient.updateRuleWithResponse(String topicName,
String subscriptionName,
RuleProperties rule,
com.azure.core.util.Context context)
Updates a rule with the given
RuleProperties. |
| Modifier and Type | Method and Description |
|---|---|
RuleProperties |
RuleProperties.setAction(RuleAction action)
Sets the action to perform if the message satisfies the filtering expression.
|
RuleProperties |
RuleProperties.setFilter(RuleFilter filter)
Sets the filter expression used to match messages.
|
| Constructor and Description |
|---|
CreateRuleOptions(RuleProperties ruleProperties)
Initializes a new instance with the given rule properties.
|
Visit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.