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

com.pulumi.azurenative.workloads.inputs.SapLandscapeMonitorSidMappingArgs 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.workloads.inputs;

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


/**
 * Gets or sets the mapping for SID to Environment/Applications.
 * 
 */
public final class SapLandscapeMonitorSidMappingArgs extends com.pulumi.resources.ResourceArgs {

    public static final SapLandscapeMonitorSidMappingArgs Empty = new SapLandscapeMonitorSidMappingArgs();

    /**
     * Gets or sets the name of the grouping.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Gets or sets the name of the grouping.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * Gets or sets the list of SID's.
     * 
     */
    @Import(name="topSid")
    private @Nullable Output> topSid;

    /**
     * @return Gets or sets the list of SID's.
     * 
     */
    public Optional>> topSid() {
        return Optional.ofNullable(this.topSid);
    }

    private SapLandscapeMonitorSidMappingArgs() {}

    private SapLandscapeMonitorSidMappingArgs(SapLandscapeMonitorSidMappingArgs $) {
        this.name = $.name;
        this.topSid = $.topSid;
    }

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

    public static final class Builder {
        private SapLandscapeMonitorSidMappingArgs $;

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

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

        /**
         * @param name Gets or sets the name of the grouping.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Gets or sets the name of the grouping.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param topSid Gets or sets the list of SID's.
         * 
         * @return builder
         * 
         */
        public Builder topSid(@Nullable Output> topSid) {
            $.topSid = topSid;
            return this;
        }

        /**
         * @param topSid Gets or sets the list of SID's.
         * 
         * @return builder
         * 
         */
        public Builder topSid(List topSid) {
            return topSid(Output.of(topSid));
        }

        /**
         * @param topSid Gets or sets the list of SID's.
         * 
         * @return builder
         * 
         */
        public Builder topSid(String... topSid) {
            return topSid(List.of(topSid));
        }

        public SapLandscapeMonitorSidMappingArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy