com.pulumi.googlenative.artifactregistry.v1.outputs.MavenRepositoryResponse 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.googlenative.artifactregistry.v1.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class MavenRepositoryResponse {
/**
* @return One of the publicly available Maven repositories supported by Artifact Registry.
*
*/
private String publicRepository;
private MavenRepositoryResponse() {}
/**
* @return One of the publicly available Maven repositories supported by Artifact Registry.
*
*/
public String publicRepository() {
return this.publicRepository;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(MavenRepositoryResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String publicRepository;
public Builder() {}
public Builder(MavenRepositoryResponse defaults) {
Objects.requireNonNull(defaults);
this.publicRepository = defaults.publicRepository;
}
@CustomType.Setter
public Builder publicRepository(String publicRepository) {
this.publicRepository = Objects.requireNonNull(publicRepository);
return this;
}
public MavenRepositoryResponse build() {
final var o = new MavenRepositoryResponse();
o.publicRepository = publicRepository;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy