com.azure.resourcemanager.cosmos.models.LocationProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-cosmos Show documentation
Show all versions of azure-resourcemanager-cosmos Show documentation
This package contains Microsoft Azure CosmosDB SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.cosmos.models;
import com.azure.core.annotation.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* Cosmos DB location metadata.
*/
@Immutable
public final class LocationProperties {
/*
* Flag indicating whether the location supports availability zones or not.
*/
@JsonProperty(value = "supportsAvailabilityZone", access = JsonProperty.Access.WRITE_ONLY)
private Boolean supportsAvailabilityZone;
/*
* Flag indicating whether the location is residency sensitive.
*/
@JsonProperty(value = "isResidencyRestricted", access = JsonProperty.Access.WRITE_ONLY)
private Boolean isResidencyRestricted;
/*
* The properties of available backup storage redundancies.
*/
@JsonProperty(value = "backupStorageRedundancies", access = JsonProperty.Access.WRITE_ONLY)
private List backupStorageRedundancies;
/*
* Flag indicating whether the subscription have access in region for Non-Availability Zones.
*/
@JsonProperty(value = "isSubscriptionRegionAccessAllowedForRegular", access = JsonProperty.Access.WRITE_ONLY)
private Boolean isSubscriptionRegionAccessAllowedForRegular;
/*
* Flag indicating whether the subscription have access in region for Availability Zones(Az).
*/
@JsonProperty(value = "isSubscriptionRegionAccessAllowedForAz", access = JsonProperty.Access.WRITE_ONLY)
private Boolean isSubscriptionRegionAccessAllowedForAz;
/*
* Enum to indicate current buildout status of the region.
*/
@JsonProperty(value = "status", access = JsonProperty.Access.WRITE_ONLY)
private Status status;
/**
* Creates an instance of LocationProperties class.
*/
public LocationProperties() {
}
/**
* Get the supportsAvailabilityZone property: Flag indicating whether the location supports availability zones or
* not.
*
* @return the supportsAvailabilityZone value.
*/
public Boolean supportsAvailabilityZone() {
return this.supportsAvailabilityZone;
}
/**
* Get the isResidencyRestricted property: Flag indicating whether the location is residency sensitive.
*
* @return the isResidencyRestricted value.
*/
public Boolean isResidencyRestricted() {
return this.isResidencyRestricted;
}
/**
* Get the backupStorageRedundancies property: The properties of available backup storage redundancies.
*
* @return the backupStorageRedundancies value.
*/
public List backupStorageRedundancies() {
return this.backupStorageRedundancies;
}
/**
* Get the isSubscriptionRegionAccessAllowedForRegular property: Flag indicating whether the subscription have
* access in region for Non-Availability Zones.
*
* @return the isSubscriptionRegionAccessAllowedForRegular value.
*/
public Boolean isSubscriptionRegionAccessAllowedForRegular() {
return this.isSubscriptionRegionAccessAllowedForRegular;
}
/**
* Get the isSubscriptionRegionAccessAllowedForAz property: Flag indicating whether the subscription have access in
* region for Availability Zones(Az).
*
* @return the isSubscriptionRegionAccessAllowedForAz value.
*/
public Boolean isSubscriptionRegionAccessAllowedForAz() {
return this.isSubscriptionRegionAccessAllowedForAz;
}
/**
* Get the status property: Enum to indicate current buildout status of the region.
*
* @return the status value.
*/
public Status status() {
return this.status;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy