com.pulumi.azurenative.testbase.inputs.GetPackagePlainArgs 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.testbase.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetPackagePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetPackagePlainArgs Empty = new GetPackagePlainArgs();
/**
* The resource name of the Test Base Package.
*
*/
@Import(name="packageName", required=true)
private String packageName;
/**
* @return The resource name of the Test Base Package.
*
*/
public String packageName() {
return this.packageName;
}
/**
* The name of the resource group that contains the resource.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group that contains the resource.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The resource name of the Test Base Account.
*
*/
@Import(name="testBaseAccountName", required=true)
private String testBaseAccountName;
/**
* @return The resource name of the Test Base Account.
*
*/
public String testBaseAccountName() {
return this.testBaseAccountName;
}
private GetPackagePlainArgs() {}
private GetPackagePlainArgs(GetPackagePlainArgs $) {
this.packageName = $.packageName;
this.resourceGroupName = $.resourceGroupName;
this.testBaseAccountName = $.testBaseAccountName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPackagePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetPackagePlainArgs $;
public Builder() {
$ = new GetPackagePlainArgs();
}
public Builder(GetPackagePlainArgs defaults) {
$ = new GetPackagePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param packageName The resource name of the Test Base Package.
*
* @return builder
*
*/
public Builder packageName(String packageName) {
$.packageName = packageName;
return this;
}
/**
* @param resourceGroupName The name of the resource group that contains the resource.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param testBaseAccountName The resource name of the Test Base Account.
*
* @return builder
*
*/
public Builder testBaseAccountName(String testBaseAccountName) {
$.testBaseAccountName = testBaseAccountName;
return this;
}
public GetPackagePlainArgs build() {
if ($.packageName == null) {
throw new MissingRequiredPropertyException("GetPackagePlainArgs", "packageName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetPackagePlainArgs", "resourceGroupName");
}
if ($.testBaseAccountName == null) {
throw new MissingRequiredPropertyException("GetPackagePlainArgs", "testBaseAccountName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy