
com.pulumi.azurenative.appplatform.outputs.GetDeploymentRemoteDebuggingConfigResult 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.appplatform.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetDeploymentRemoteDebuggingConfigResult {
/**
* @return Indicate if remote debugging is enabled
*
*/
private @Nullable Boolean enabled;
/**
* @return Application debugging port
*
*/
private @Nullable Integer port;
private GetDeploymentRemoteDebuggingConfigResult() {}
/**
* @return Indicate if remote debugging is enabled
*
*/
public Optional enabled() {
return Optional.ofNullable(this.enabled);
}
/**
* @return Application debugging port
*
*/
public Optional port() {
return Optional.ofNullable(this.port);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDeploymentRemoteDebuggingConfigResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Boolean enabled;
private @Nullable Integer port;
public Builder() {}
public Builder(GetDeploymentRemoteDebuggingConfigResult defaults) {
Objects.requireNonNull(defaults);
this.enabled = defaults.enabled;
this.port = defaults.port;
}
@CustomType.Setter
public Builder enabled(@Nullable Boolean enabled) {
this.enabled = enabled;
return this;
}
@CustomType.Setter
public Builder port(@Nullable Integer port) {
this.port = port;
return this;
}
public GetDeploymentRemoteDebuggingConfigResult build() {
final var _resultValue = new GetDeploymentRemoteDebuggingConfigResult();
_resultValue.enabled = enabled;
_resultValue.port = port;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy