Show / Hide Table of Contents

Class SubscriptionRuleArgs

Inheritance
System.Object
InputArgs
ResourceArgs
SubscriptionRuleArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.ServiceBus
Assembly: Pulumi.Azure.dll
Syntax
public sealed class SubscriptionRuleArgs : ResourceArgs

Constructors

View Source

SubscriptionRuleArgs()

Declaration
public SubscriptionRuleArgs()

Properties

View Source

Action

Represents set of actions written in SQL language-based syntax that is performed against a BrokeredMessage.

Declaration
public Input<string> Action { get; set; }
Property Value
Type Description
Input<System.String>
View Source

CorrelationFilter

A correlation_filter block as documented below to be evaluated against a BrokeredMessage. Required when filter_type is set to CorrelationFilter.

Declaration
public Input<SubscriptionRuleCorrelationFilterArgs> CorrelationFilter { get; set; }
Property Value
Type Description
Input<SubscriptionRuleCorrelationFilterArgs>
View Source

FilterType

Type of filter to be applied to a BrokeredMessage. Possible values are SqlFilter and CorrelationFilter.

Declaration
public Input<string> FilterType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Specifies the name of the ServiceBus Subscription Rule. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NamespaceName

The name of the ServiceBus Namespace in which the ServiceBus Topic exists. Changing this forces a new resource to be created.

Declaration
public Input<string> NamespaceName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ResourceGroupName

The name of the resource group in the ServiceBus Namespace exists. Changing this forces a new resource to be created.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

SqlFilter

Represents a filter written in SQL language-based syntax that to be evaluated against a BrokeredMessage. Required when filter_type is set to SqlFilter.

Declaration
public Input<string> SqlFilter { get; set; }
Property Value
Type Description
Input<System.String>
View Source

SubscriptionName

The name of the ServiceBus Subscription in which this Rule should be created. Changing this forces a new resource to be created.

Declaration
public Input<string> SubscriptionName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

TopicName

The name of the ServiceBus Topic in which the ServiceBus Subscription exists. Changing this forces a new resource to be created.

Declaration
public Input<string> TopicName { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.