All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.compute.inputs.ScheduledEventsProfileArgs Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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.compute.inputs;

import com.pulumi.azurenative.compute.inputs.OSImageNotificationProfileArgs;
import com.pulumi.azurenative.compute.inputs.TerminateNotificationProfileArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class ScheduledEventsProfileArgs extends com.pulumi.resources.ResourceArgs {

    public static final ScheduledEventsProfileArgs Empty = new ScheduledEventsProfileArgs();

    /**
     * Specifies OS Image Scheduled Event related configurations.
     * 
     */
    @Import(name="osImageNotificationProfile")
    private @Nullable Output osImageNotificationProfile;

    /**
     * @return Specifies OS Image Scheduled Event related configurations.
     * 
     */
    public Optional> osImageNotificationProfile() {
        return Optional.ofNullable(this.osImageNotificationProfile);
    }

    /**
     * Specifies Terminate Scheduled Event related configurations.
     * 
     */
    @Import(name="terminateNotificationProfile")
    private @Nullable Output terminateNotificationProfile;

    /**
     * @return Specifies Terminate Scheduled Event related configurations.
     * 
     */
    public Optional> terminateNotificationProfile() {
        return Optional.ofNullable(this.terminateNotificationProfile);
    }

    private ScheduledEventsProfileArgs() {}

    private ScheduledEventsProfileArgs(ScheduledEventsProfileArgs $) {
        this.osImageNotificationProfile = $.osImageNotificationProfile;
        this.terminateNotificationProfile = $.terminateNotificationProfile;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(ScheduledEventsProfileArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private ScheduledEventsProfileArgs $;

        public Builder() {
            $ = new ScheduledEventsProfileArgs();
        }

        public Builder(ScheduledEventsProfileArgs defaults) {
            $ = new ScheduledEventsProfileArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param osImageNotificationProfile Specifies OS Image Scheduled Event related configurations.
         * 
         * @return builder
         * 
         */
        public Builder osImageNotificationProfile(@Nullable Output osImageNotificationProfile) {
            $.osImageNotificationProfile = osImageNotificationProfile;
            return this;
        }

        /**
         * @param osImageNotificationProfile Specifies OS Image Scheduled Event related configurations.
         * 
         * @return builder
         * 
         */
        public Builder osImageNotificationProfile(OSImageNotificationProfileArgs osImageNotificationProfile) {
            return osImageNotificationProfile(Output.of(osImageNotificationProfile));
        }

        /**
         * @param terminateNotificationProfile Specifies Terminate Scheduled Event related configurations.
         * 
         * @return builder
         * 
         */
        public Builder terminateNotificationProfile(@Nullable Output terminateNotificationProfile) {
            $.terminateNotificationProfile = terminateNotificationProfile;
            return this;
        }

        /**
         * @param terminateNotificationProfile Specifies Terminate Scheduled Event related configurations.
         * 
         * @return builder
         * 
         */
        public Builder terminateNotificationProfile(TerminateNotificationProfileArgs terminateNotificationProfile) {
            return terminateNotificationProfile(Output.of(terminateNotificationProfile));
        }

        public ScheduledEventsProfileArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy