
com.pulumi.azurenative.datashare.inputs.GetScheduledTriggerArgs 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.datashare.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 GetScheduledTriggerArgs extends com.pulumi.resources.InvokeArgs {
public static final GetScheduledTriggerArgs Empty = new GetScheduledTriggerArgs();
/**
* The name of the share account.
*
*/
@Import(name="accountName", required=true)
private Output accountName;
/**
* @return The name of the share account.
*
*/
public Output accountName() {
return this.accountName;
}
/**
* The resource group name.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The resource group name.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name of the shareSubscription.
*
*/
@Import(name="shareSubscriptionName", required=true)
private Output shareSubscriptionName;
/**
* @return The name of the shareSubscription.
*
*/
public Output shareSubscriptionName() {
return this.shareSubscriptionName;
}
/**
* The name of the trigger.
*
*/
@Import(name="triggerName", required=true)
private Output triggerName;
/**
* @return The name of the trigger.
*
*/
public Output triggerName() {
return this.triggerName;
}
private GetScheduledTriggerArgs() {}
private GetScheduledTriggerArgs(GetScheduledTriggerArgs $) {
this.accountName = $.accountName;
this.resourceGroupName = $.resourceGroupName;
this.shareSubscriptionName = $.shareSubscriptionName;
this.triggerName = $.triggerName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetScheduledTriggerArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetScheduledTriggerArgs $;
public Builder() {
$ = new GetScheduledTriggerArgs();
}
public Builder(GetScheduledTriggerArgs defaults) {
$ = new GetScheduledTriggerArgs(Objects.requireNonNull(defaults));
}
/**
* @param accountName The name of the share account.
*
* @return builder
*
*/
public Builder accountName(Output accountName) {
$.accountName = accountName;
return this;
}
/**
* @param accountName The name of the share account.
*
* @return builder
*
*/
public Builder accountName(String accountName) {
return accountName(Output.of(accountName));
}
/**
* @param resourceGroupName The resource group name.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The resource group name.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param shareSubscriptionName The name of the shareSubscription.
*
* @return builder
*
*/
public Builder shareSubscriptionName(Output shareSubscriptionName) {
$.shareSubscriptionName = shareSubscriptionName;
return this;
}
/**
* @param shareSubscriptionName The name of the shareSubscription.
*
* @return builder
*
*/
public Builder shareSubscriptionName(String shareSubscriptionName) {
return shareSubscriptionName(Output.of(shareSubscriptionName));
}
/**
* @param triggerName The name of the trigger.
*
* @return builder
*
*/
public Builder triggerName(Output triggerName) {
$.triggerName = triggerName;
return this;
}
/**
* @param triggerName The name of the trigger.
*
* @return builder
*
*/
public Builder triggerName(String triggerName) {
return triggerName(Output.of(triggerName));
}
public GetScheduledTriggerArgs build() {
if ($.accountName == null) {
throw new MissingRequiredPropertyException("GetScheduledTriggerArgs", "accountName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetScheduledTriggerArgs", "resourceGroupName");
}
if ($.shareSubscriptionName == null) {
throw new MissingRequiredPropertyException("GetScheduledTriggerArgs", "shareSubscriptionName");
}
if ($.triggerName == null) {
throw new MissingRequiredPropertyException("GetScheduledTriggerArgs", "triggerName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy