
com.pulumi.azurenative.compute.outputs.GalleryIdentifierResponse 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.compute.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GalleryIdentifierResponse {
/**
* @return The unique name of the Shared Image Gallery. This name is generated automatically by Azure.
*
*/
private String uniqueName;
private GalleryIdentifierResponse() {}
/**
* @return The unique name of the Shared Image Gallery. This name is generated automatically by Azure.
*
*/
public String uniqueName() {
return this.uniqueName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GalleryIdentifierResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String uniqueName;
public Builder() {}
public Builder(GalleryIdentifierResponse defaults) {
Objects.requireNonNull(defaults);
this.uniqueName = defaults.uniqueName;
}
@CustomType.Setter
public Builder uniqueName(String uniqueName) {
if (uniqueName == null) {
throw new MissingRequiredPropertyException("GalleryIdentifierResponse", "uniqueName");
}
this.uniqueName = uniqueName;
return this;
}
public GalleryIdentifierResponse build() {
final var _resultValue = new GalleryIdentifierResponse();
_resultValue.uniqueName = uniqueName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy