Share via


PushSettingsInner Constructors

Definition

Overloads

PushSettingsInner()

Initializes a new instance of the PushSettingsInner class.

PushSettingsInner(Boolean, String, String, String, String, String, String, String)

Initializes a new instance of the PushSettingsInner class.

PushSettingsInner()

Initializes a new instance of the PushSettingsInner class.

public PushSettingsInner ();
Public Sub New ()

Applies to

PushSettingsInner(Boolean, String, String, String, String, String, String, String)

Initializes a new instance of the PushSettingsInner class.

public PushSettingsInner (bool isPushEnabled, string id = default, string name = default, string type = default, string kind = default, string tagWhitelistJson = default, string tagsRequiringAuth = default, string dynamicTagsJson = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.PushSettingsInner : bool * string * string * string * string * string * string * string -> Microsoft.Azure.Management.AppService.Fluent.Models.PushSettingsInner
Public Sub New (isPushEnabled As Boolean, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional kind As String = Nothing, Optional tagWhitelistJson As String = Nothing, Optional tagsRequiringAuth As String = Nothing, Optional dynamicTagsJson As String = Nothing)

Parameters

isPushEnabled
Boolean

Gets or sets a flag indicating whether the Push endpoint is enabled.

id
String
name
String
type
String
kind
String

Kind of resource.

tagWhitelistJson
String

Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.

tagsRequiringAuth
String

Gets or sets a JSON string containing a list of tags that require user authentication to be used in the push registration endpoint. Tags can consist of alphanumeric characters and the following: '_', '@', '#', '.', ':', '-'. Validation should be performed at the PushRequestHandler.

dynamicTagsJson
String

Gets or sets a JSON string containing a list of dynamic tags that will be evaluated from user claims in the push registration endpoint.

Applies to