
com.pulumi.azurenative.migrate.outputs.GetBusinessCaseOperationReportDownloadUrlResult 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.migrate.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetBusinessCaseOperationReportDownloadUrlResult {
/**
* @return Hyperlink to download report.
*
*/
private String businessCaseReportUrl;
/**
* @return Expiry date of download url.
*
*/
private String expirationTime;
private GetBusinessCaseOperationReportDownloadUrlResult() {}
/**
* @return Hyperlink to download report.
*
*/
public String businessCaseReportUrl() {
return this.businessCaseReportUrl;
}
/**
* @return Expiry date of download url.
*
*/
public String expirationTime() {
return this.expirationTime;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetBusinessCaseOperationReportDownloadUrlResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String businessCaseReportUrl;
private String expirationTime;
public Builder() {}
public Builder(GetBusinessCaseOperationReportDownloadUrlResult defaults) {
Objects.requireNonNull(defaults);
this.businessCaseReportUrl = defaults.businessCaseReportUrl;
this.expirationTime = defaults.expirationTime;
}
@CustomType.Setter
public Builder businessCaseReportUrl(String businessCaseReportUrl) {
if (businessCaseReportUrl == null) {
throw new MissingRequiredPropertyException("GetBusinessCaseOperationReportDownloadUrlResult", "businessCaseReportUrl");
}
this.businessCaseReportUrl = businessCaseReportUrl;
return this;
}
@CustomType.Setter
public Builder expirationTime(String expirationTime) {
if (expirationTime == null) {
throw new MissingRequiredPropertyException("GetBusinessCaseOperationReportDownloadUrlResult", "expirationTime");
}
this.expirationTime = expirationTime;
return this;
}
public GetBusinessCaseOperationReportDownloadUrlResult build() {
final var _resultValue = new GetBusinessCaseOperationReportDownloadUrlResult();
_resultValue.businessCaseReportUrl = businessCaseReportUrl;
_resultValue.expirationTime = expirationTime;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy