Uses of Class
com.azure.messaging.servicebus.administration.models.RuleProperties
Package
Description
Package containing classes managing resources in Azure Service Bus.
Package containing classes models for
ServiceBusAdministrationClient
and ServiceBusAdministrationAsyncClient
used for managing
Queues, Topics, and Subscriptions.-
Uses of RuleProperties in com.azure.messaging.servicebus.administration
Modifier and TypeMethodDescriptionServiceBusAdministrationClient.createRule
(String topicName, String subscriptionName, String ruleName) Creates a rule under the given topic and subscriptionServiceBusAdministrationClient.createRule
(String topicName, String ruleName, String subscriptionName, CreateRuleOptions ruleOptions) Creates a rule with theCreateRuleOptions
.Gets a rule from the service namespace.ServiceBusAdministrationClient.updateRule
(String topicName, String subscriptionName, RuleProperties rule) Updates a rule with the givenRuleProperties
.Modifier and TypeMethodDescriptionServiceBusAdministrationAsyncClient.createRule
(String topicName, String subscriptionName, String ruleName) Creates a rule under the given topic and subscriptionServiceBusAdministrationAsyncClient.createRule
(String topicName, String subscriptionName, String ruleName, CreateRuleOptions ruleOptions) Creates a rule with theCreateRuleOptions
.Mono<com.azure.core.http.rest.Response<RuleProperties>>
ServiceBusAdministrationAsyncClient.createRuleWithResponse
(String topicName, String subscriptionName, String ruleName, CreateRuleOptions ruleOptions) Creates a rule and returns the created rule in addition to the HTTP response.com.azure.core.http.rest.Response<RuleProperties>
ServiceBusAdministrationClient.createRuleWithResponse
(String topicName, String subscriptionName, String ruleName, CreateRuleOptions ruleOptions, com.azure.core.util.Context context) Creates a rule and returns the created rule in addition to the HTTP response.ServiceBusAdministrationAsyncClient.getRule
(String topicName, String subscriptionName, String ruleName) Gets a rule from the service namespace.Mono<com.azure.core.http.rest.Response<RuleProperties>>
ServiceBusAdministrationAsyncClient.getRuleWithResponse
(String topicName, String subscriptionName, String ruleName) Gets a rule from the service namespace.com.azure.core.http.rest.Response<RuleProperties>
ServiceBusAdministrationClient.getRuleWithResponse
(String topicName, String subscriptionName, String ruleName, com.azure.core.util.Context context) Gets a rule from the service namespace.com.azure.core.http.rest.PagedFlux<RuleProperties>
Fetches all the rules for a topic and subscription.com.azure.core.http.rest.PagedIterable<RuleProperties>
Fetches all the rules for a topic and subscription.ServiceBusAdministrationAsyncClient.updateRule
(String topicName, String subscriptionName, RuleProperties rule) Updates a rule with the givenRuleProperties
.Mono<com.azure.core.http.rest.Response<RuleProperties>>
ServiceBusAdministrationAsyncClient.updateRuleWithResponse
(String topicName, String subscriptionName, RuleProperties rule) Updates a rule with the givenRuleProperties
.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 givenRuleProperties
.Modifier and TypeMethodDescriptionServiceBusAdministrationAsyncClient.updateRule
(String topicName, String subscriptionName, RuleProperties rule) Updates a rule with the givenRuleProperties
.ServiceBusAdministrationClient.updateRule
(String topicName, String subscriptionName, RuleProperties rule) Updates a rule with the givenRuleProperties
.Mono<com.azure.core.http.rest.Response<RuleProperties>>
ServiceBusAdministrationAsyncClient.updateRuleWithResponse
(String topicName, String subscriptionName, RuleProperties rule) Updates a rule with the givenRuleProperties
.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 givenRuleProperties
. -
Uses of RuleProperties in com.azure.messaging.servicebus.administration.models
Modifier and TypeMethodDescriptionRuleProperties.setAction
(RuleAction action) Sets the action to perform if the message satisfies the filtering expression.RuleProperties.setFilter
(RuleFilter filter) Sets the filter expression used to match messages.ModifierConstructorDescriptionCreateRuleOptions
(RuleProperties ruleProperties) Initializes a new instance with the given rule properties.