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

com.pulumi.azurenative.azurearcdata.inputs.ActiveDirectoryConnectorStatusArgs 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.azurearcdata.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Double;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * The status of the Kubernetes custom resource.
 * 
 */
public final class ActiveDirectoryConnectorStatusArgs extends com.pulumi.resources.ResourceArgs {

    public static final ActiveDirectoryConnectorStatusArgs Empty = new ActiveDirectoryConnectorStatusArgs();

    /**
     * The time that the custom resource was last updated.
     * 
     */
    @Import(name="lastUpdateTime")
    private @Nullable Output lastUpdateTime;

    /**
     * @return The time that the custom resource was last updated.
     * 
     */
    public Optional> lastUpdateTime() {
        return Optional.ofNullable(this.lastUpdateTime);
    }

    /**
     * The version of the replicaSet associated with the AD connector custom resource.
     * 
     */
    @Import(name="observedGeneration")
    private @Nullable Output observedGeneration;

    /**
     * @return The version of the replicaSet associated with the AD connector custom resource.
     * 
     */
    public Optional> observedGeneration() {
        return Optional.ofNullable(this.observedGeneration);
    }

    /**
     * The state of the AD connector custom resource.
     * 
     */
    @Import(name="state")
    private @Nullable Output state;

    /**
     * @return The state of the AD connector custom resource.
     * 
     */
    public Optional> state() {
        return Optional.ofNullable(this.state);
    }

    private ActiveDirectoryConnectorStatusArgs() {}

    private ActiveDirectoryConnectorStatusArgs(ActiveDirectoryConnectorStatusArgs $) {
        this.lastUpdateTime = $.lastUpdateTime;
        this.observedGeneration = $.observedGeneration;
        this.state = $.state;
    }

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

    public static final class Builder {
        private ActiveDirectoryConnectorStatusArgs $;

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

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

        /**
         * @param lastUpdateTime The time that the custom resource was last updated.
         * 
         * @return builder
         * 
         */
        public Builder lastUpdateTime(@Nullable Output lastUpdateTime) {
            $.lastUpdateTime = lastUpdateTime;
            return this;
        }

        /**
         * @param lastUpdateTime The time that the custom resource was last updated.
         * 
         * @return builder
         * 
         */
        public Builder lastUpdateTime(String lastUpdateTime) {
            return lastUpdateTime(Output.of(lastUpdateTime));
        }

        /**
         * @param observedGeneration The version of the replicaSet associated with the AD connector custom resource.
         * 
         * @return builder
         * 
         */
        public Builder observedGeneration(@Nullable Output observedGeneration) {
            $.observedGeneration = observedGeneration;
            return this;
        }

        /**
         * @param observedGeneration The version of the replicaSet associated with the AD connector custom resource.
         * 
         * @return builder
         * 
         */
        public Builder observedGeneration(Double observedGeneration) {
            return observedGeneration(Output.of(observedGeneration));
        }

        /**
         * @param state The state of the AD connector custom resource.
         * 
         * @return builder
         * 
         */
        public Builder state(@Nullable Output state) {
            $.state = state;
            return this;
        }

        /**
         * @param state The state of the AD connector custom resource.
         * 
         * @return builder
         * 
         */
        public Builder state(String state) {
            return state(Output.of(state));
        }

        public ActiveDirectoryConnectorStatusArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy