TargetRegion.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.compute.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Describes the target region information. */
@Fluent
public final class TargetRegion {
@JsonIgnore private final ClientLogger logger = new ClientLogger(TargetRegion.class);
/*
* The name of the region.
*/
@JsonProperty(value = "name", required = true)
private String name;
/*
* The number of replicas of the Image Version to be created per region.
* This property is updatable.
*/
@JsonProperty(value = "regionalReplicaCount")
private Integer regionalReplicaCount;
/*
* Specifies the storage account type to be used to store the image. This
* property is not updatable.
*/
@JsonProperty(value = "storageAccountType")
private StorageAccountType storageAccountType;
/*
* Optional. Allows users to provide customer managed keys for encrypting
* the OS and data disks in the gallery artifact.
*/
@JsonProperty(value = "encryption")
private EncryptionImages encryption;
/**
* Get the name property: The name of the region.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The name of the region.
*
* @param name the name value to set.
* @return the TargetRegion object itself.
*/
public TargetRegion withName(String name) {
this.name = name;
return this;
}
/**
* Get the regionalReplicaCount property: The number of replicas of the Image Version to be created per region. This
* property is updatable.
*
* @return the regionalReplicaCount value.
*/
public Integer regionalReplicaCount() {
return this.regionalReplicaCount;
}
/**
* Set the regionalReplicaCount property: The number of replicas of the Image Version to be created per region. This
* property is updatable.
*
* @param regionalReplicaCount the regionalReplicaCount value to set.
* @return the TargetRegion object itself.
*/
public TargetRegion withRegionalReplicaCount(Integer regionalReplicaCount) {
this.regionalReplicaCount = regionalReplicaCount;
return this;
}
/**
* Get the storageAccountType property: Specifies the storage account type to be used to store the image. This
* property is not updatable.
*
* @return the storageAccountType value.
*/
public StorageAccountType storageAccountType() {
return this.storageAccountType;
}
/**
* Set the storageAccountType property: Specifies the storage account type to be used to store the image. This
* property is not updatable.
*
* @param storageAccountType the storageAccountType value to set.
* @return the TargetRegion object itself.
*/
public TargetRegion withStorageAccountType(StorageAccountType storageAccountType) {
this.storageAccountType = storageAccountType;
return this;
}
/**
* Get the encryption property: Optional. Allows users to provide customer managed keys for encrypting the OS and
* data disks in the gallery artifact.
*
* @return the encryption value.
*/
public EncryptionImages encryption() {
return this.encryption;
}
/**
* Set the encryption property: Optional. Allows users to provide customer managed keys for encrypting the OS and
* data disks in the gallery artifact.
*
* @param encryption the encryption value to set.
* @return the TargetRegion object itself.
*/
public TargetRegion withEncryption(EncryptionImages encryption) {
this.encryption = encryption;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (name() == null) {
throw logger
.logExceptionAsError(
new IllegalArgumentException("Missing required property name in model TargetRegion"));
}
if (encryption() != null) {
encryption().validate();
}
}
}