com.azure.resourcemanager.appplatform.models.ConfigServerProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-appplatform Show documentation
Show all versions of azure-resourcemanager-appplatform Show documentation
This package contains Microsoft Azure App Platform Management 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.appplatform.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Config server git properties payload. */
@Fluent
public final class ConfigServerProperties {
/*
* State of the config server.
*/
@JsonProperty(value = "provisioningState", access = JsonProperty.Access.WRITE_ONLY)
private ConfigServerState provisioningState;
/*
* Error when apply config server settings.
*/
@JsonProperty(value = "error")
private Error error;
/*
* Settings of config server.
*/
@JsonProperty(value = "configServer")
private ConfigServerSettings configServer;
/**
* Get the provisioningState property: State of the config server.
*
* @return the provisioningState value.
*/
public ConfigServerState provisioningState() {
return this.provisioningState;
}
/**
* Get the error property: Error when apply config server settings.
*
* @return the error value.
*/
public Error error() {
return this.error;
}
/**
* Set the error property: Error when apply config server settings.
*
* @param error the error value to set.
* @return the ConfigServerProperties object itself.
*/
public ConfigServerProperties withError(Error error) {
this.error = error;
return this;
}
/**
* Get the configServer property: Settings of config server.
*
* @return the configServer value.
*/
public ConfigServerSettings configServer() {
return this.configServer;
}
/**
* Set the configServer property: Settings of config server.
*
* @param configServer the configServer value to set.
* @return the ConfigServerProperties object itself.
*/
public ConfigServerProperties withConfigServer(ConfigServerSettings configServer) {
this.configServer = configServer;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (error() != null) {
error().validate();
}
if (configServer() != null) {
configServer().validate();
}
}
}