ArmMapsModelFactory.MapsAccountProperties Method

Definition

public static Azure.ResourceManager.Maps.Models.MapsAccountProperties MapsAccountProperties(Guid? uniqueId = default, bool? disableLocalAuth = default, string provisioningState = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Maps.Models.MapsLinkedResource> linkedResources = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Maps.Models.MapsCorsRule> corsRules = default, Azure.ResourceManager.Maps.Models.MapsEncryption encryption = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Maps.Models.MapsLocationItem> locations = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Maps.MapsPrivateEndpointConnectionData> privateEndpointConnections = default, Azure.ResourceManager.Maps.Models.MapsPublicNetworkAccess? publicNetworkAccess = default);
static member MapsAccountProperties : Nullable<Guid> * Nullable<bool> * string * seq<Azure.ResourceManager.Maps.Models.MapsLinkedResource> * seq<Azure.ResourceManager.Maps.Models.MapsCorsRule> * Azure.ResourceManager.Maps.Models.MapsEncryption * seq<Azure.ResourceManager.Maps.Models.MapsLocationItem> * seq<Azure.ResourceManager.Maps.MapsPrivateEndpointConnectionData> * Nullable<Azure.ResourceManager.Maps.Models.MapsPublicNetworkAccess> -> Azure.ResourceManager.Maps.Models.MapsAccountProperties
Public Shared Function MapsAccountProperties (Optional uniqueId As Nullable(Of Guid) = Nothing, Optional disableLocalAuth As Nullable(Of Boolean) = Nothing, Optional provisioningState As String = Nothing, Optional linkedResources As IEnumerable(Of MapsLinkedResource) = Nothing, Optional corsRules As IEnumerable(Of MapsCorsRule) = Nothing, Optional encryption As MapsEncryption = Nothing, Optional locations As IEnumerable(Of MapsLocationItem) = Nothing, Optional privateEndpointConnections As IEnumerable(Of MapsPrivateEndpointConnectionData) = Nothing, Optional publicNetworkAccess As Nullable(Of MapsPublicNetworkAccess) = Nothing) As MapsAccountProperties

Parameters

uniqueId
Nullable<Guid>

A unique identifier for the Maps Account.

disableLocalAuth
Nullable<Boolean>

Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage.

provisioningState
String

The provisioning state of the Maps account resource, Account updates can only be performed on terminal states. Terminal states: Succeeded and Failed.

linkedResources
IEnumerable<MapsLinkedResource>

The array of associated resources to the Maps account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Maps Account Managed Identity(s) permissions to those resource(s).

corsRules
IEnumerable<MapsCorsRule>

The list of CORS rules. You can include up to five CorsRule elements in the request.

encryption
MapsEncryption

All encryption configuration for a resource.

locations
IEnumerable<MapsLocationItem>

List of additional data processing regions for the Maps Account, which may result in requests being processed in another geography. Some features or results may be restricted to specific regions. By default, Maps REST APIs process requests according to the account location or the geographic scope.

privateEndpointConnections
IEnumerable<MapsPrivateEndpointConnectionData>

List of private endpoint connections associated with the Maps Account.

publicNetworkAccess
Nullable<MapsPublicNetworkAccess>

Property to specify whether the Maps Account will accept traffic from public internet. If set to 'disabled' all traffic except private endpoint traffic and that that originates from trusted services will be blocked.

Returns

A new MapsAccountProperties instance for mocking.

Applies to