TopicUpdateParameters Constructors

Definition

Overloads

TopicUpdateParameters()

Initializes a new instance of the TopicUpdateParameters class.

TopicUpdateParameters(IDictionary<String,String>, IdentityInfo, String, IList<InboundIpRule>, Nullable<Boolean>, String)

Initializes a new instance of the TopicUpdateParameters class.

TopicUpdateParameters()

Initializes a new instance of the TopicUpdateParameters class.

public TopicUpdateParameters ();
Public Sub New ()

Applies to

TopicUpdateParameters(IDictionary<String,String>, IdentityInfo, String, IList<InboundIpRule>, Nullable<Boolean>, String)

Initializes a new instance of the TopicUpdateParameters class.

public TopicUpdateParameters (System.Collections.Generic.IDictionary<string,string> tags = default, Microsoft.Azure.Management.EventGrid.Models.IdentityInfo identity = default, string publicNetworkAccess = default, System.Collections.Generic.IList<Microsoft.Azure.Management.EventGrid.Models.InboundIpRule> inboundIpRules = default, bool? disableLocalAuth = default, string dataResidencyBoundary = default);
new Microsoft.Azure.Management.EventGrid.Models.TopicUpdateParameters : System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.EventGrid.Models.IdentityInfo * string * System.Collections.Generic.IList<Microsoft.Azure.Management.EventGrid.Models.InboundIpRule> * Nullable<bool> * string -> Microsoft.Azure.Management.EventGrid.Models.TopicUpdateParameters
Public Sub New (Optional tags As IDictionary(Of String, String) = Nothing, Optional identity As IdentityInfo = Nothing, Optional publicNetworkAccess As String = Nothing, Optional inboundIpRules As IList(Of InboundIpRule) = Nothing, Optional disableLocalAuth As Nullable(Of Boolean) = Nothing, Optional dataResidencyBoundary As String = Nothing)

Parameters

tags
IDictionary<String,String>

Tags of the Topic resource.

identity
IdentityInfo

Topic resource identity information.

publicNetworkAccess
String

This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring <seealso cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.TopicUpdateParameterProperties.InboundIpRules" />. Possible values include: 'Enabled', 'Disabled'

inboundIpRules
IList<InboundIpRule>

This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.

disableLocalAuth
Nullable<Boolean>

This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the topic.

dataResidencyBoundary
String

The data residency boundary for the topic. Possible values include: 'WithinGeopair', 'WithinRegion'

Applies to