
com.pulumi.azurenative.compute.inputs.GetGalleryApplicationArgs 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.compute.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetGalleryApplicationArgs extends com.pulumi.resources.InvokeArgs {
public static final GetGalleryApplicationArgs Empty = new GetGalleryApplicationArgs();
/**
* The name of the gallery Application Definition to be retrieved.
*
*/
@Import(name="galleryApplicationName", required=true)
private Output galleryApplicationName;
/**
* @return The name of the gallery Application Definition to be retrieved.
*
*/
public Output galleryApplicationName() {
return this.galleryApplicationName;
}
/**
* The name of the Shared Application Gallery from which the Application Definitions are to be retrieved.
*
*/
@Import(name="galleryName", required=true)
private Output galleryName;
/**
* @return The name of the Shared Application Gallery from which the Application Definitions are to be retrieved.
*
*/
public Output galleryName() {
return this.galleryName;
}
/**
* The name of the resource group.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetGalleryApplicationArgs() {}
private GetGalleryApplicationArgs(GetGalleryApplicationArgs $) {
this.galleryApplicationName = $.galleryApplicationName;
this.galleryName = $.galleryName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetGalleryApplicationArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetGalleryApplicationArgs $;
public Builder() {
$ = new GetGalleryApplicationArgs();
}
public Builder(GetGalleryApplicationArgs defaults) {
$ = new GetGalleryApplicationArgs(Objects.requireNonNull(defaults));
}
/**
* @param galleryApplicationName The name of the gallery Application Definition to be retrieved.
*
* @return builder
*
*/
public Builder galleryApplicationName(Output galleryApplicationName) {
$.galleryApplicationName = galleryApplicationName;
return this;
}
/**
* @param galleryApplicationName The name of the gallery Application Definition to be retrieved.
*
* @return builder
*
*/
public Builder galleryApplicationName(String galleryApplicationName) {
return galleryApplicationName(Output.of(galleryApplicationName));
}
/**
* @param galleryName The name of the Shared Application Gallery from which the Application Definitions are to be retrieved.
*
* @return builder
*
*/
public Builder galleryName(Output galleryName) {
$.galleryName = galleryName;
return this;
}
/**
* @param galleryName The name of the Shared Application Gallery from which the Application Definitions are to be retrieved.
*
* @return builder
*
*/
public Builder galleryName(String galleryName) {
return galleryName(Output.of(galleryName));
}
/**
* @param resourceGroupName The name of the resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetGalleryApplicationArgs build() {
if ($.galleryApplicationName == null) {
throw new MissingRequiredPropertyException("GetGalleryApplicationArgs", "galleryApplicationName");
}
if ($.galleryName == null) {
throw new MissingRequiredPropertyException("GetGalleryApplicationArgs", "galleryName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetGalleryApplicationArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy