
com.pulumi.azurenative.insights.outputs.GetTestResultFileResult 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.insights.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 GetTestResultFileResult {
/**
* @return File contents.
*
*/
private @Nullable String data;
/**
* @return The URI that can be used to request the next section of the result file in the event the file is too large for a single request.
*
*/
private @Nullable String nextLink;
private GetTestResultFileResult() {}
/**
* @return File contents.
*
*/
public Optional data() {
return Optional.ofNullable(this.data);
}
/**
* @return The URI that can be used to request the next section of the result file in the event the file is too large for a single request.
*
*/
public Optional nextLink() {
return Optional.ofNullable(this.nextLink);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetTestResultFileResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String data;
private @Nullable String nextLink;
public Builder() {}
public Builder(GetTestResultFileResult defaults) {
Objects.requireNonNull(defaults);
this.data = defaults.data;
this.nextLink = defaults.nextLink;
}
@CustomType.Setter
public Builder data(@Nullable String data) {
this.data = data;
return this;
}
@CustomType.Setter
public Builder nextLink(@Nullable String nextLink) {
this.nextLink = nextLink;
return this;
}
public GetTestResultFileResult build() {
final var _resultValue = new GetTestResultFileResult();
_resultValue.data = data;
_resultValue.nextLink = nextLink;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy