
com.pulumi.azurenative.azurestackhci.outputs.ObservabilityResponse 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.azurestackhci.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ObservabilityResponse {
/**
* @return When set to true, collects log data to facilitate quicker issue resolution.
*
*/
private @Nullable Boolean episodicDataUpload;
/**
* @return Location of your cluster. The log and diagnostic data is sent to the appropriate diagnostics servers depending upon where your cluster resides. Setting this to false results in all data sent to Microsoft to be stored outside of the EU.
*
*/
private @Nullable Boolean euLocation;
/**
* @return Enables telemetry data to be sent to Microsoft
*
*/
private @Nullable Boolean streamingDataClient;
private ObservabilityResponse() {}
/**
* @return When set to true, collects log data to facilitate quicker issue resolution.
*
*/
public Optional episodicDataUpload() {
return Optional.ofNullable(this.episodicDataUpload);
}
/**
* @return Location of your cluster. The log and diagnostic data is sent to the appropriate diagnostics servers depending upon where your cluster resides. Setting this to false results in all data sent to Microsoft to be stored outside of the EU.
*
*/
public Optional euLocation() {
return Optional.ofNullable(this.euLocation);
}
/**
* @return Enables telemetry data to be sent to Microsoft
*
*/
public Optional streamingDataClient() {
return Optional.ofNullable(this.streamingDataClient);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ObservabilityResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Boolean episodicDataUpload;
private @Nullable Boolean euLocation;
private @Nullable Boolean streamingDataClient;
public Builder() {}
public Builder(ObservabilityResponse defaults) {
Objects.requireNonNull(defaults);
this.episodicDataUpload = defaults.episodicDataUpload;
this.euLocation = defaults.euLocation;
this.streamingDataClient = defaults.streamingDataClient;
}
@CustomType.Setter
public Builder episodicDataUpload(@Nullable Boolean episodicDataUpload) {
this.episodicDataUpload = episodicDataUpload;
return this;
}
@CustomType.Setter
public Builder euLocation(@Nullable Boolean euLocation) {
this.euLocation = euLocation;
return this;
}
@CustomType.Setter
public Builder streamingDataClient(@Nullable Boolean streamingDataClient) {
this.streamingDataClient = streamingDataClient;
return this;
}
public ObservabilityResponse build() {
final var _resultValue = new ObservabilityResponse();
_resultValue.episodicDataUpload = episodicDataUpload;
_resultValue.euLocation = euLocation;
_resultValue.streamingDataClient = streamingDataClient;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy