
com.pulumi.azurenative.testbase.inputs.GetCustomerEventPlainArgs 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 GetCustomerEventPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetCustomerEventPlainArgs Empty = new GetCustomerEventPlainArgs();
/**
* The resource name of the Test Base Customer event.
*
*/
@Import(name="customerEventName", required=true)
private String customerEventName;
/**
* @return The resource name of the Test Base Customer event.
*
*/
public String customerEventName() {
return this.customerEventName;
}
/**
* 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 GetCustomerEventPlainArgs() {}
private GetCustomerEventPlainArgs(GetCustomerEventPlainArgs $) {
this.customerEventName = $.customerEventName;
this.resourceGroupName = $.resourceGroupName;
this.testBaseAccountName = $.testBaseAccountName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetCustomerEventPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetCustomerEventPlainArgs $;
public Builder() {
$ = new GetCustomerEventPlainArgs();
}
public Builder(GetCustomerEventPlainArgs defaults) {
$ = new GetCustomerEventPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param customerEventName The resource name of the Test Base Customer event.
*
* @return builder
*
*/
public Builder customerEventName(String customerEventName) {
$.customerEventName = customerEventName;
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 GetCustomerEventPlainArgs build() {
if ($.customerEventName == null) {
throw new MissingRequiredPropertyException("GetCustomerEventPlainArgs", "customerEventName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetCustomerEventPlainArgs", "resourceGroupName");
}
if ($.testBaseAccountName == null) {
throw new MissingRequiredPropertyException("GetCustomerEventPlainArgs", "testBaseAccountName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy