Package version:

An Azure resource.

interface Resource {
    id?: string;
    location: string;
    name?: string;
    systemData?: SystemData;
    tags?: {
        [propertyName: string]: string;
    };
    type?: string;
}

Hierarchy (view full)

Properties

id?: string

The resource ID. NOTE: This property will not be serialized. It can only be populated by the server.

location: string

The location of the resource. This cannot be changed after the resource is created.

name?: string

The name of the resource. NOTE: This property will not be serialized. It can only be populated by the server.

systemData?: SystemData

Metadata pertaining to creation and last modification of the resource. NOTE: This property will not be serialized. It can only be populated by the server.

tags?: {
    [propertyName: string]: string;
}

The tags of the resource.

type?: string

The type of the resource. NOTE: This property will not be serialized. It can only be populated by the server.