
com.pulumi.azurenative.signalrservice.outputs.LiveTraceCategoryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.signalrservice.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class LiveTraceCategoryResponse {
/**
* @return Indicates whether or the live trace category is enabled.
* Available values: true, false.
* Case insensitive.
*
*/
private @Nullable String enabled;
/**
* @return Gets or sets the live trace category's name.
* Available values: ConnectivityLogs, MessagingLogs.
* Case insensitive.
*
*/
private @Nullable String name;
private LiveTraceCategoryResponse() {}
/**
* @return Indicates whether or the live trace category is enabled.
* Available values: true, false.
* Case insensitive.
*
*/
public Optional enabled() {
return Optional.ofNullable(this.enabled);
}
/**
* @return Gets or sets the live trace category's name.
* Available values: ConnectivityLogs, MessagingLogs.
* Case insensitive.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(LiveTraceCategoryResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String enabled;
private @Nullable String name;
public Builder() {}
public Builder(LiveTraceCategoryResponse defaults) {
Objects.requireNonNull(defaults);
this.enabled = defaults.enabled;
this.name = defaults.name;
}
@CustomType.Setter
public Builder enabled(@Nullable String enabled) {
this.enabled = enabled;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
public LiveTraceCategoryResponse build() {
final var _resultValue = new LiveTraceCategoryResponse();
_resultValue.enabled = enabled;
_resultValue.name = name;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy