Share via


TrackedResourceData Constructors

Definition

Overloads

TrackedResourceData()

Initializes a new instance of TrackedResourceData for deserialization.

TrackedResourceData(AzureLocation)

Initializes a new instance of TrackedResource.

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

Initializes a new instance of TrackedResource.

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 TrackedResource.

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 TrackedResource.

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

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.

tags
IDictionary<String,String>

Resource tags.

location
AzureLocation

The geo-location where the resource lives.

Applies to