![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.monitoring.inputs.AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.monitoring.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 AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs extends com.pulumi.resources.ResourceArgs {
public static final AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs Empty = new AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs();
/**
* Specifies the recurrence end time (H:M:S).
*
*/
@Import(name="endTime", required=true)
private Output endTime;
/**
* @return Specifies the recurrence end time (H:M:S).
*
*/
public Output endTime() {
return this.endTime;
}
/**
* Specifies the recurrence start time (H:M:S).
*
*/
@Import(name="startTime", required=true)
private Output startTime;
/**
* @return Specifies the recurrence start time (H:M:S).
*
*/
public Output startTime() {
return this.startTime;
}
private AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs() {}
private AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs(AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs $) {
this.endTime = $.endTime;
this.startTime = $.startTime;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs $;
public Builder() {
$ = new AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs();
}
public Builder(AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs defaults) {
$ = new AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs(Objects.requireNonNull(defaults));
}
/**
* @param endTime Specifies the recurrence end time (H:M:S).
*
* @return builder
*
*/
public Builder endTime(Output endTime) {
$.endTime = endTime;
return this;
}
/**
* @param endTime Specifies the recurrence end time (H:M:S).
*
* @return builder
*
*/
public Builder endTime(String endTime) {
return endTime(Output.of(endTime));
}
/**
* @param startTime Specifies the recurrence start time (H:M:S).
*
* @return builder
*
*/
public Builder startTime(Output startTime) {
$.startTime = startTime;
return this;
}
/**
* @param startTime Specifies the recurrence start time (H:M:S).
*
* @return builder
*
*/
public Builder startTime(String startTime) {
return startTime(Output.of(startTime));
}
public AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs build() {
if ($.endTime == null) {
throw new MissingRequiredPropertyException("AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs", "endTime");
}
if ($.startTime == null) {
throw new MissingRequiredPropertyException("AlertProcessingRuleSuppressionScheduleRecurrenceDailyArgs", "startTime");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy