All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.management.network.OperationPropertiesFormatServiceSpecification Maven / Gradle / Ivy

There is a newer version: 1.41.4
Show newest version
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 *
 * Code generated by Microsoft (R) AutoRest Code Generator.
 */

package com.microsoft.azure.management.network;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Specification of the service.
 */
public class OperationPropertiesFormatServiceSpecification {
    /**
     * Operation service specification.
     */
    @JsonProperty(value = "metricSpecifications")
    private List metricSpecifications;

    /**
     * Operation log specification.
     */
    @JsonProperty(value = "logSpecifications")
    private List logSpecifications;

    /**
     * Get operation service specification.
     *
     * @return the metricSpecifications value
     */
    public List metricSpecifications() {
        return this.metricSpecifications;
    }

    /**
     * Set operation service specification.
     *
     * @param metricSpecifications the metricSpecifications value to set
     * @return the OperationPropertiesFormatServiceSpecification object itself.
     */
    public OperationPropertiesFormatServiceSpecification withMetricSpecifications(List metricSpecifications) {
        this.metricSpecifications = metricSpecifications;
        return this;
    }

    /**
     * Get operation log specification.
     *
     * @return the logSpecifications value
     */
    public List logSpecifications() {
        return this.logSpecifications;
    }

    /**
     * Set operation log specification.
     *
     * @param logSpecifications the logSpecifications value to set
     * @return the OperationPropertiesFormatServiceSpecification object itself.
     */
    public OperationPropertiesFormatServiceSpecification withLogSpecifications(List logSpecifications) {
        this.logSpecifications = logSpecifications;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy