ServiceSpecification.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.appplatform.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;
import java.util.List;
/** Service specification payload. */
@Fluent
public final class ServiceSpecification {
@JsonIgnore private final ClientLogger logger = new ClientLogger(ServiceSpecification.class);
/*
* Specifications of the Log for Azure Monitoring
*/
@JsonProperty(value = "logSpecifications")
private List<LogSpecification> logSpecifications;
/*
* Specifications of the Metrics for Azure Monitoring
*/
@JsonProperty(value = "metricSpecifications")
private List<MetricSpecification> metricSpecifications;
/**
* Get the logSpecifications property: Specifications of the Log for Azure Monitoring.
*
* @return the logSpecifications value.
*/
public List<LogSpecification> logSpecifications() {
return this.logSpecifications;
}
/**
* Set the logSpecifications property: Specifications of the Log for Azure Monitoring.
*
* @param logSpecifications the logSpecifications value to set.
* @return the ServiceSpecification object itself.
*/
public ServiceSpecification withLogSpecifications(List<LogSpecification> logSpecifications) {
this.logSpecifications = logSpecifications;
return this;
}
/**
* Get the metricSpecifications property: Specifications of the Metrics for Azure Monitoring.
*
* @return the metricSpecifications value.
*/
public List<MetricSpecification> metricSpecifications() {
return this.metricSpecifications;
}
/**
* Set the metricSpecifications property: Specifications of the Metrics for Azure Monitoring.
*
* @param metricSpecifications the metricSpecifications value to set.
* @return the ServiceSpecification object itself.
*/
public ServiceSpecification withMetricSpecifications(List<MetricSpecification> metricSpecifications) {
this.metricSpecifications = metricSpecifications;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (logSpecifications() != null) {
logSpecifications().forEach(e -> e.validate());
}
if (metricSpecifications() != null) {
metricSpecifications().forEach(e -> e.validate());
}
}
}