ArmKeyVaultModelFactory.KeyVaultPrivateLinkResourceData Method

Definition

Overloads

KeyVaultPrivateLinkResourceData(ResourceIdentifier, String, ResourceType, SystemData, Nullable<AzureLocation>, IReadOnlyDictionary<String, String>, String, IEnumerable<String>, IEnumerable<String>)

Source:
ArmKeyVaultModelFactory.cs

Initializes a new instance of KeyVaultPrivateLinkResourceData.

public static Azure.ResourceManager.KeyVault.Models.KeyVaultPrivateLinkResourceData KeyVaultPrivateLinkResourceData(Azure.Core.ResourceIdentifier id, string name, Azure.Core.ResourceType resourceType, Azure.ResourceManager.Models.SystemData systemData, Azure.Core.AzureLocation? location, System.Collections.Generic.IReadOnlyDictionary<string,string> tags = default, string groupId = default, System.Collections.Generic.IEnumerable<string> requiredMembers = default, System.Collections.Generic.IEnumerable<string> requiredZoneNames = default);
static member KeyVaultPrivateLinkResourceData : Azure.Core.ResourceIdentifier * string * Azure.Core.ResourceType * Azure.ResourceManager.Models.SystemData * Nullable<Azure.Core.AzureLocation> * System.Collections.Generic.IReadOnlyDictionary<string, string> * string * seq<string> * seq<string> -> Azure.ResourceManager.KeyVault.Models.KeyVaultPrivateLinkResourceData
Public Shared Function KeyVaultPrivateLinkResourceData (id As ResourceIdentifier, name As String, resourceType As ResourceType, systemData As SystemData, location As Nullable(Of AzureLocation), Optional tags As IReadOnlyDictionary(Of String, String) = Nothing, Optional groupId As String = Nothing, Optional requiredMembers As IEnumerable(Of String) = Nothing, Optional requiredZoneNames As IEnumerable(Of String) = Nothing) As KeyVaultPrivateLinkResourceData

Parameters

id
ResourceIdentifier

The id.

name
String

The name.

resourceType
ResourceType

The resourceType.

systemData
SystemData

The systemData.

location
Nullable<AzureLocation>

Azure location of the key vault resource.

tags
IReadOnlyDictionary<String,String>

Tags assigned to the key vault resource.

groupId
String

Group identifier of private link resource.

requiredMembers
IEnumerable<String>

Required member names of private link resource.

requiredZoneNames
IEnumerable<String>

Required DNS zone names of the the private link resource.

Returns

A new KeyVaultPrivateLinkResourceData instance for mocking.

Applies to

KeyVaultPrivateLinkResourceData(ResourceIdentifier, String, ResourceType, SystemData, String, IEnumerable<String>, IEnumerable<String>, Nullable<AzureLocation>, IReadOnlyDictionary<String,String>)

Source:
ArmKeyVaultModelFactory.cs
Source:
ArmKeyVaultModelFactory.cs

Initializes a new instance of KeyVaultPrivateLinkResourceData.

public static Azure.ResourceManager.KeyVault.Models.KeyVaultPrivateLinkResourceData KeyVaultPrivateLinkResourceData(Azure.Core.ResourceIdentifier id = default, string name = default, Azure.Core.ResourceType resourceType = default, Azure.ResourceManager.Models.SystemData systemData = default, string groupId = default, System.Collections.Generic.IEnumerable<string> requiredMembers = default, System.Collections.Generic.IEnumerable<string> requiredZoneNames = default, Azure.Core.AzureLocation? location = default, System.Collections.Generic.IReadOnlyDictionary<string,string> tags = default);
static member KeyVaultPrivateLinkResourceData : Azure.Core.ResourceIdentifier * string * Azure.Core.ResourceType * Azure.ResourceManager.Models.SystemData * string * seq<string> * seq<string> * Nullable<Azure.Core.AzureLocation> * System.Collections.Generic.IReadOnlyDictionary<string, string> -> Azure.ResourceManager.KeyVault.Models.KeyVaultPrivateLinkResourceData
Public Shared Function KeyVaultPrivateLinkResourceData (Optional id As ResourceIdentifier = Nothing, Optional name As String = Nothing, Optional resourceType As ResourceType = Nothing, Optional systemData As SystemData = Nothing, Optional groupId As String = Nothing, Optional requiredMembers As IEnumerable(Of String) = Nothing, Optional requiredZoneNames As IEnumerable(Of String) = Nothing, Optional location As Nullable(Of AzureLocation) = Nothing, Optional tags As IReadOnlyDictionary(Of String, String) = Nothing) As KeyVaultPrivateLinkResourceData

Parameters

id
ResourceIdentifier

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

name
String

The name of the resource.

resourceType
ResourceType

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

systemData
SystemData

Azure Resource Manager metadata containing createdBy and modifiedBy information.

groupId
String

Group identifier of private link resource.

requiredMembers
IEnumerable<String>

Required member names of private link resource.

requiredZoneNames
IEnumerable<String>

Required DNS zone names of the the private link resource.

location
Nullable<AzureLocation>

Azure location of the key vault resource.

tags
IReadOnlyDictionary<String,String>

Tags assigned to the key vault resource.

Returns

A new KeyVaultPrivateLinkResourceData instance for mocking.

Applies to