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

com.azure.resourcemanager.videoanalyzer.models.Properties Maven / Gradle / Ivy

Go to download

We’re retiring the Azure Video Analyzer preview service; you're advised to transition your applications off of Video Analyzer by 01 December 2022. This SDK is no longer maintained and won’t work after the service is retired. To learn how to transition off, please refer to: https://aka.ms/azsdk/videoanalyzer/transitionoffguidance This package contains Microsoft Azure SDK for Video Analyzer Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Video Analyzer provides a platform for you to build intelligent video applications that span the edge and the cloud. Package tag package-preview-2021-11.

There is a newer version: 1.0.0-beta.5
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.videoanalyzer.models;

import com.azure.core.annotation.Immutable;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;

/** Metric properties. */
@Immutable
public final class Properties {
    @JsonIgnore private final ClientLogger logger = new ClientLogger(Properties.class);

    /*
     * The service specifications.
     */
    @JsonProperty(value = "serviceSpecification", access = JsonProperty.Access.WRITE_ONLY)
    private ServiceSpecification serviceSpecification;

    /**
     * Get the serviceSpecification property: The service specifications.
     *
     * @return the serviceSpecification value.
     */
    public ServiceSpecification serviceSpecification() {
        return this.serviceSpecification;
    }

    /**
     * Validates the instance.
     *
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (serviceSpecification() != null) {
            serviceSpecification().validate();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy