
com.pulumi.azurenative.hybridnetwork.inputs.GetArtifactStorePlainArgs 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.hybridnetwork.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetArtifactStorePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetArtifactStorePlainArgs Empty = new GetArtifactStorePlainArgs();
/**
* The name of the artifact store.
*
*/
@Import(name="artifactStoreName", required=true)
private String artifactStoreName;
/**
* @return The name of the artifact store.
*
*/
public String artifactStoreName() {
return this.artifactStoreName;
}
/**
* The name of the publisher.
*
*/
@Import(name="publisherName", required=true)
private String publisherName;
/**
* @return The name of the publisher.
*
*/
public String publisherName() {
return this.publisherName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetArtifactStorePlainArgs() {}
private GetArtifactStorePlainArgs(GetArtifactStorePlainArgs $) {
this.artifactStoreName = $.artifactStoreName;
this.publisherName = $.publisherName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetArtifactStorePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetArtifactStorePlainArgs $;
public Builder() {
$ = new GetArtifactStorePlainArgs();
}
public Builder(GetArtifactStorePlainArgs defaults) {
$ = new GetArtifactStorePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param artifactStoreName The name of the artifact store.
*
* @return builder
*
*/
public Builder artifactStoreName(String artifactStoreName) {
$.artifactStoreName = artifactStoreName;
return this;
}
/**
* @param publisherName The name of the publisher.
*
* @return builder
*
*/
public Builder publisherName(String publisherName) {
$.publisherName = publisherName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetArtifactStorePlainArgs build() {
if ($.artifactStoreName == null) {
throw new MissingRequiredPropertyException("GetArtifactStorePlainArgs", "artifactStoreName");
}
if ($.publisherName == null) {
throw new MissingRequiredPropertyException("GetArtifactStorePlainArgs", "publisherName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetArtifactStorePlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy