Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.resources; import com.microsoft.azure.management.apigeneration.Fluent; import com.microsoft.azure.management.resources.fluentcore.arm.Region; import com.microsoft.azure.management.resources.fluentcore.arm.models.HasName; import com.microsoft.azure.management.resources.fluentcore.model.Indexable; import com.microsoft.azure.management.resources.fluentcore.model.HasInner; import com.microsoft.azure.management.resources.implementation.LocationInner;
An immutable client-side representation of an Azure location.
/** * An immutable client-side representation of an Azure location. */
@Fluent public interface Location extends Indexable, HasInner<LocationInner>, HasName {
Returns:the subscription UUID
/** * @return the subscription UUID */
String subscriptionId();
Returns:the display name of the location readable by humans
/** * @return the display name of the location readable by humans */
String displayName();
Returns:the region of the data center location
/** * @return the region of the data center location */
Region region();
Returns:the latitude of the location
/** * @return the latitude of the location */
String latitude();
Returns:the longitude of the location
/** * @return the longitude of the location */
String longitude();
Returns:the type of the region.
/** * @return the type of the region. */
RegionType regionType();
Returns:the category of the region.
/** * @return the category of the region. */
RegionCategory regionCategory();
Returns:the geography group.
/** * @return the geography group. */
String geographyGroup();
Returns:the physical location.
/** * @return the physical location. */
String physicalLocation(); }