Package version:

Interface CloudService

Describes the cloud service.

interface CloudService {
    id?: string;
    location: string;
    name?: string;
    properties?: CloudServiceProperties;
    systemData?: SystemData;
    tags?: {
        [propertyName: string]: string;
    };
    type?: string;
    zones?: string[];
}

Properties

id?: string

Resource Id. NOTE: This property will not be serialized. It can only be populated by the server.

location: string

Resource location.

name?: string

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

Cloud service properties

systemData?: SystemData

The system meta data relating to this resource.

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

Resource tags.

type?: string

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

zones?: string[]

List of logical availability zone of the resource. List should contain only 1 zone where cloud service should be provisioned. This field is optional.