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