com.azure.resourcemanager.appplatform.models.LogSpecification 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;
/**
* Specifications of the Log for Azure Monitoring.
*/
@Fluent
public final class LogSpecification {
/*
* Name of the log
*/
@JsonProperty(value = "name")
private String name;
/*
* Localized friendly display name of the log
*/
@JsonProperty(value = "displayName")
private String displayName;
/*
* Blob duration of the log
*/
@JsonProperty(value = "blobDuration")
private String blobDuration;
/**
* Creates an instance of LogSpecification class.
*/
public LogSpecification() {
}
/**
* Get the name property: Name of the log.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: Name of the log.
*
* @param name the name value to set.
* @return the LogSpecification object itself.
*/
public LogSpecification withName(String name) {
this.name = name;
return this;
}
/**
* Get the displayName property: Localized friendly display name of the log.
*
* @return the displayName value.
*/
public String displayName() {
return this.displayName;
}
/**
* Set the displayName property: Localized friendly display name of the log.
*
* @param displayName the displayName value to set.
* @return the LogSpecification object itself.
*/
public LogSpecification withDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
/**
* Get the blobDuration property: Blob duration of the log.
*
* @return the blobDuration value.
*/
public String blobDuration() {
return this.blobDuration;
}
/**
* Set the blobDuration property: Blob duration of the log.
*
* @param blobDuration the blobDuration value to set.
* @return the LogSpecification object itself.
*/
public LogSpecification withBlobDuration(String blobDuration) {
this.blobDuration = blobDuration;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}