
com.pulumi.azurenative.cloudngfw.outputs.ApplicationInsightsResponse Maven / Gradle / Ivy
// *** 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.cloudngfw.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 ApplicationInsightsResponse {
/**
* @return Resource id for Application Insights
*
*/
private @Nullable String id;
/**
* @return Application Insights key
*
*/
private @Nullable String key;
private ApplicationInsightsResponse() {}
/**
* @return Resource id for Application Insights
*
*/
public Optional id() {
return Optional.ofNullable(this.id);
}
/**
* @return Application Insights key
*
*/
public Optional key() {
return Optional.ofNullable(this.key);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ApplicationInsightsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String id;
private @Nullable String key;
public Builder() {}
public Builder(ApplicationInsightsResponse defaults) {
Objects.requireNonNull(defaults);
this.id = defaults.id;
this.key = defaults.key;
}
@CustomType.Setter
public Builder id(@Nullable String id) {
this.id = id;
return this;
}
@CustomType.Setter
public Builder key(@Nullable String key) {
this.key = key;
return this;
}
public ApplicationInsightsResponse build() {
final var _resultValue = new ApplicationInsightsResponse();
_resultValue.id = id;
_resultValue.key = key;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy