DataManifestCustomResourceFunctionDefinition Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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'.
The top-level properties that can be selected on the function's output. eg - [ "name", "location" ] if vault().name and vault().location are supported
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
Azure SDK for .NET