Udostępnij za pośrednictwem


PartnerNamespaceUpdateParameters Constructors

Definition

Overloads

PartnerNamespaceUpdateParameters()

Initializes a new instance of the PartnerNamespaceUpdateParameters class.

PartnerNamespaceUpdateParameters(IDictionary<String,String>, String, IList<InboundIpRule>, Nullable<Boolean>)

Initializes a new instance of the PartnerNamespaceUpdateParameters class.

PartnerNamespaceUpdateParameters()

Initializes a new instance of the PartnerNamespaceUpdateParameters class.

public PartnerNamespaceUpdateParameters ();
Public Sub New ()

Applies to

PartnerNamespaceUpdateParameters(IDictionary<String,String>, String, IList<InboundIpRule>, Nullable<Boolean>)

Initializes a new instance of the PartnerNamespaceUpdateParameters class.

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

Parameters

tags
IDictionary<String,String>

Tags of the Partner Namespace.

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.PartnerNamespaceUpdateParameterProperties.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 partner namespace.

Applies to