com.pulumi.azurenative.datafactory.inputs.GetTriggerPlainArgs 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.datafactory.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetTriggerPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetTriggerPlainArgs Empty = new GetTriggerPlainArgs();
/**
* The factory name.
*
*/
@Import(name="factoryName", required=true)
private String factoryName;
/**
* @return The factory name.
*
*/
public String factoryName() {
return this.factoryName;
}
/**
* The resource group name.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The resource group name.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The trigger name.
*
*/
@Import(name="triggerName", required=true)
private String triggerName;
/**
* @return The trigger name.
*
*/
public String triggerName() {
return this.triggerName;
}
private GetTriggerPlainArgs() {}
private GetTriggerPlainArgs(GetTriggerPlainArgs $) {
this.factoryName = $.factoryName;
this.resourceGroupName = $.resourceGroupName;
this.triggerName = $.triggerName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetTriggerPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetTriggerPlainArgs $;
public Builder() {
$ = new GetTriggerPlainArgs();
}
public Builder(GetTriggerPlainArgs defaults) {
$ = new GetTriggerPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param factoryName The factory name.
*
* @return builder
*
*/
public Builder factoryName(String factoryName) {
$.factoryName = factoryName;
return this;
}
/**
* @param resourceGroupName The resource group name.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param triggerName The trigger name.
*
* @return builder
*
*/
public Builder triggerName(String triggerName) {
$.triggerName = triggerName;
return this;
}
public GetTriggerPlainArgs build() {
if ($.factoryName == null) {
throw new MissingRequiredPropertyException("GetTriggerPlainArgs", "factoryName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetTriggerPlainArgs", "resourceGroupName");
}
if ($.triggerName == null) {
throw new MissingRequiredPropertyException("GetTriggerPlainArgs", "triggerName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy