TrackedResourceData Constructors

Definition

Overloads

TrackedResourceData()

Initializes a new instance of TrackedResourceData for deserialization.

TrackedResourceData(AzureLocation)

Initializes a new instance of TrackedResourceData.

TrackedResourceData(ResourceIdentifier, String, ResourceType, SystemData, IDictionary<String,String>, AzureLocation)

Initializes a new instance of TrackedResourceData.

TrackedResourceData()

Source:
TrackedResourceData.cs
Source:
TrackedResourceData.cs

Initializes a new instance of TrackedResourceData for deserialization.

protected TrackedResourceData ();
Protected Sub New ()

Applies to

TrackedResourceData(AzureLocation)

Source:
TrackedResourceData.cs
Source:
TrackedResourceData.cs

Initializes a new instance of TrackedResourceData.

protected TrackedResourceData (Azure.Core.AzureLocation location);
new Azure.ResourceManager.Models.TrackedResourceData : Azure.Core.AzureLocation -> Azure.ResourceManager.Models.TrackedResourceData
Protected Sub New (location As AzureLocation)

Parameters

location
AzureLocation

The geo-location where the resource lives.

Applies to

TrackedResourceData(ResourceIdentifier, String, ResourceType, SystemData, IDictionary<String,String>, AzureLocation)

Source:
TrackedResourceData.cs
Source:
TrackedResourceData.cs

Initializes a new instance of TrackedResourceData.

protected TrackedResourceData (Azure.Core.ResourceIdentifier id, string name, Azure.Core.ResourceType resourceType, Azure.ResourceManager.Models.SystemData systemData, System.Collections.Generic.IDictionary<string,string> tags, Azure.Core.AzureLocation location);
new Azure.ResourceManager.Models.TrackedResourceData : Azure.Core.ResourceIdentifier * string * Azure.Core.ResourceType * Azure.ResourceManager.Models.SystemData * System.Collections.Generic.IDictionary<string, string> * Azure.Core.AzureLocation -> Azure.ResourceManager.Models.TrackedResourceData
Protected Sub New (id As ResourceIdentifier, name As String, resourceType As ResourceType, systemData As SystemData, tags As IDictionary(Of String, String), location As AzureLocation)

Parameters

id
ResourceIdentifier

The id.

name
String

The name.

resourceType
ResourceType

The resourceType.

systemData
SystemData

The systemData.

tags
IDictionary<String,String>

Resource tags.

location
AzureLocation

The geo-location where the resource lives.

Applies to