Share via


DataManifestCustomResourceFunctionDefinition Constructors

Definition

Overloads

DataManifestCustomResourceFunctionDefinition()

Initializes a new instance of the DataManifestCustomResourceFunctionDefinition class.

DataManifestCustomResourceFunctionDefinition(String, String, IList<String>, Nullable<Boolean>)

Initializes a new instance of the DataManifestCustomResourceFunctionDefinition class.

DataManifestCustomResourceFunctionDefinition()

Initializes a new instance of the DataManifestCustomResourceFunctionDefinition class.

public DataManifestCustomResourceFunctionDefinition ();
Public Sub New ()

Applies to

DataManifestCustomResourceFunctionDefinition(String, String, IList<String>, Nullable<Boolean>)

Initializes a new instance of the DataManifestCustomResourceFunctionDefinition class.

public DataManifestCustomResourceFunctionDefinition (string name = default, string fullyQualifiedResourceType = default, System.Collections.Generic.IList<string> defaultProperties = default, bool? allowCustomProperties = default);
new Microsoft.Azure.Management.ResourceManager.Models.DataManifestCustomResourceFunctionDefinition : string * string * System.Collections.Generic.IList<string> * Nullable<bool> -> Microsoft.Azure.Management.ResourceManager.Models.DataManifestCustomResourceFunctionDefinition
Public Sub New (Optional name As String = Nothing, Optional fullyQualifiedResourceType As String = Nothing, Optional defaultProperties As IList(Of String) = Nothing, Optional allowCustomProperties As Nullable(Of Boolean) = Nothing)

Parameters

name
String

The function name as it will appear in the policy rule. eg - 'vault'.

fullyQualifiedResourceType
String

The fully qualified control plane resource type that this function represents. eg - 'Microsoft.KeyVault/vaults'.

defaultProperties
IList<String>

The top-level properties that can be selected on the function's output. eg - [ "name", "location" ] if vault().name and vault().location are supported

allowCustomProperties
Nullable<Boolean>

A value indicating whether the custom properties within the property bag are allowed. Needs api-version to be specified in the policy rule eg - vault('2019-06-01').

Applies to