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

com.pulumi.azurenative.securityinsights.inputs.WatchlistUserInfoArgs Maven / Gradle / Ivy

There is a newer version: 2.78.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.securityinsights.inputs;

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


/**
 * User information that made some action
 * 
 */
public final class WatchlistUserInfoArgs extends com.pulumi.resources.ResourceArgs {

    public static final WatchlistUserInfoArgs Empty = new WatchlistUserInfoArgs();

    /**
     * The object id of the user.
     * 
     */
    @Import(name="objectId")
    private @Nullable Output objectId;

    /**
     * @return The object id of the user.
     * 
     */
    public Optional> objectId() {
        return Optional.ofNullable(this.objectId);
    }

    private WatchlistUserInfoArgs() {}

    private WatchlistUserInfoArgs(WatchlistUserInfoArgs $) {
        this.objectId = $.objectId;
    }

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

    public static final class Builder {
        private WatchlistUserInfoArgs $;

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

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

        /**
         * @param objectId The object id of the user.
         * 
         * @return builder
         * 
         */
        public Builder objectId(@Nullable Output objectId) {
            $.objectId = objectId;
            return this;
        }

        /**
         * @param objectId The object id of the user.
         * 
         * @return builder
         * 
         */
        public Builder objectId(String objectId) {
            return objectId(Output.of(objectId));
        }

        public WatchlistUserInfoArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy