PortalSettingsContract Constructors

Definition

Overloads

PortalSettingsContract()

Initializes a new instance of the PortalSettingsContract class.

PortalSettingsContract(String, String, String, String, String, SubscriptionsDelegationSettingsProperties, RegistrationDelegationSettingsProperties, Nullable<Boolean>, TermsOfServiceProperties)

Initializes a new instance of the PortalSettingsContract class.

PortalSettingsContract()

Initializes a new instance of the PortalSettingsContract class.

public PortalSettingsContract ();
Public Sub New ()

Applies to

PortalSettingsContract(String, String, String, String, String, SubscriptionsDelegationSettingsProperties, RegistrationDelegationSettingsProperties, Nullable<Boolean>, TermsOfServiceProperties)

Initializes a new instance of the PortalSettingsContract class.

public PortalSettingsContract (string id = default, string name = default, string type = default, string url = default, string validationKey = default, Microsoft.Azure.Management.ApiManagement.Models.SubscriptionsDelegationSettingsProperties subscriptions = default, Microsoft.Azure.Management.ApiManagement.Models.RegistrationDelegationSettingsProperties userRegistration = default, bool? enabled = default, Microsoft.Azure.Management.ApiManagement.Models.TermsOfServiceProperties termsOfService = default);
new Microsoft.Azure.Management.ApiManagement.Models.PortalSettingsContract : string * string * string * string * string * Microsoft.Azure.Management.ApiManagement.Models.SubscriptionsDelegationSettingsProperties * Microsoft.Azure.Management.ApiManagement.Models.RegistrationDelegationSettingsProperties * Nullable<bool> * Microsoft.Azure.Management.ApiManagement.Models.TermsOfServiceProperties -> Microsoft.Azure.Management.ApiManagement.Models.PortalSettingsContract
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional url As String = Nothing, Optional validationKey As String = Nothing, Optional subscriptions As SubscriptionsDelegationSettingsProperties = Nothing, Optional userRegistration As RegistrationDelegationSettingsProperties = Nothing, Optional enabled As Nullable(Of Boolean) = Nothing, Optional termsOfService As TermsOfServiceProperties = Nothing)

Parameters

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

url
String

A delegation Url.

validationKey
String

A base64-encoded validation key to validate, that a request is coming from Azure API Management.

subscriptions
SubscriptionsDelegationSettingsProperties

Subscriptions delegation settings.

userRegistration
RegistrationDelegationSettingsProperties

User registration delegation settings.

enabled
Nullable<Boolean>

Redirect Anonymous users to the Sign-In page.

termsOfService
TermsOfServiceProperties

Terms of service contract properties.

Applies to