com.azure.resourcemanager.storage.models.Multichannel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storage Show documentation
Show all versions of azure-resourcemanager-storage Show documentation
This package contains Microsoft Azure Storage Management SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.storage.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Multichannel setting. Applies to Premium FileStorage only.
*/
@Fluent
public final class Multichannel {
/*
* Indicates whether multichannel is enabled
*/
@JsonProperty(value = "enabled")
private Boolean enabled;
/**
* Creates an instance of Multichannel class.
*/
public Multichannel() {
}
/**
* Get the enabled property: Indicates whether multichannel is enabled.
*
* @return the enabled value.
*/
public Boolean enabled() {
return this.enabled;
}
/**
* Set the enabled property: Indicates whether multichannel is enabled.
*
* @param enabled the enabled value to set.
* @return the Multichannel object itself.
*/
public Multichannel withEnabled(Boolean enabled) {
this.enabled = enabled;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy