
com.pulumi.azurenative.automation.outputs.ContentHashResponse 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.automation.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class ContentHashResponse {
/**
* @return Gets or sets the content hash algorithm used to hash the content.
*
*/
private String algorithm;
/**
* @return Gets or sets expected hash value of the content.
*
*/
private String value;
private ContentHashResponse() {}
/**
* @return Gets or sets the content hash algorithm used to hash the content.
*
*/
public String algorithm() {
return this.algorithm;
}
/**
* @return Gets or sets expected hash value of the content.
*
*/
public String value() {
return this.value;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ContentHashResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String algorithm;
private String value;
public Builder() {}
public Builder(ContentHashResponse defaults) {
Objects.requireNonNull(defaults);
this.algorithm = defaults.algorithm;
this.value = defaults.value;
}
@CustomType.Setter
public Builder algorithm(String algorithm) {
if (algorithm == null) {
throw new MissingRequiredPropertyException("ContentHashResponse", "algorithm");
}
this.algorithm = algorithm;
return this;
}
@CustomType.Setter
public Builder value(String value) {
if (value == null) {
throw new MissingRequiredPropertyException("ContentHashResponse", "value");
}
this.value = value;
return this;
}
public ContentHashResponse build() {
final var _resultValue = new ContentHashResponse();
_resultValue.algorithm = algorithm;
_resultValue.value = value;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy