
com.pulumi.azurenative.automation.inputs.GetPython3PackagePlainArgs 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.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetPython3PackagePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetPython3PackagePlainArgs Empty = new GetPython3PackagePlainArgs();
/**
* The name of the automation account.
*
*/
@Import(name="automationAccountName", required=true)
private String automationAccountName;
/**
* @return The name of the automation account.
*
*/
public String automationAccountName() {
return this.automationAccountName;
}
/**
* The python package name.
*
*/
@Import(name="packageName", required=true)
private String packageName;
/**
* @return The python package name.
*
*/
public String packageName() {
return this.packageName;
}
/**
* Name of an Azure Resource group.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return Name of an Azure Resource group.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetPython3PackagePlainArgs() {}
private GetPython3PackagePlainArgs(GetPython3PackagePlainArgs $) {
this.automationAccountName = $.automationAccountName;
this.packageName = $.packageName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPython3PackagePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetPython3PackagePlainArgs $;
public Builder() {
$ = new GetPython3PackagePlainArgs();
}
public Builder(GetPython3PackagePlainArgs defaults) {
$ = new GetPython3PackagePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param automationAccountName The name of the automation account.
*
* @return builder
*
*/
public Builder automationAccountName(String automationAccountName) {
$.automationAccountName = automationAccountName;
return this;
}
/**
* @param packageName The python package name.
*
* @return builder
*
*/
public Builder packageName(String packageName) {
$.packageName = packageName;
return this;
}
/**
* @param resourceGroupName Name of an Azure Resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetPython3PackagePlainArgs build() {
if ($.automationAccountName == null) {
throw new MissingRequiredPropertyException("GetPython3PackagePlainArgs", "automationAccountName");
}
if ($.packageName == null) {
throw new MissingRequiredPropertyException("GetPython3PackagePlainArgs", "packageName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetPython3PackagePlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy