com.azure.resourcemanager.appplatform.models.ServiceSpecification 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;
import java.util.List;
/**
* Service specification payload.
*/
@Fluent
public final class ServiceSpecification {
/*
* Specifications of the Log for Azure Monitoring
*/
@JsonProperty(value = "logSpecifications")
private List logSpecifications;
/*
* Specifications of the Metrics for Azure Monitoring
*/
@JsonProperty(value = "metricSpecifications")
private List metricSpecifications;
/**
* Creates an instance of ServiceSpecification class.
*/
public ServiceSpecification() {
}
/**
* Get the logSpecifications property: Specifications of the Log for Azure Monitoring.
*
* @return the logSpecifications value.
*/
public List 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 logSpecifications) {
this.logSpecifications = logSpecifications;
return this;
}
/**
* Get the metricSpecifications property: Specifications of the Metrics for Azure Monitoring.
*
* @return the metricSpecifications value.
*/
public List 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 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());
}
}
}