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