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

com.pulumi.junipermist.org.inputs.SsoRoleState 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.junipermist.org.inputs;

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


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

    public static final SsoRoleState Empty = new SsoRoleState();

    @Import(name="name")
    private @Nullable Output name;

    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    @Import(name="orgId")
    private @Nullable Output orgId;

    public Optional> orgId() {
        return Optional.ofNullable(this.orgId);
    }

    @Import(name="privileges")
    private @Nullable Output> privileges;

    public Optional>> privileges() {
        return Optional.ofNullable(this.privileges);
    }

    private SsoRoleState() {}

    private SsoRoleState(SsoRoleState $) {
        this.name = $.name;
        this.orgId = $.orgId;
        this.privileges = $.privileges;
    }

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

    public static final class Builder {
        private SsoRoleState $;

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

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

        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        public Builder name(String name) {
            return name(Output.of(name));
        }

        public Builder orgId(@Nullable Output orgId) {
            $.orgId = orgId;
            return this;
        }

        public Builder orgId(String orgId) {
            return orgId(Output.of(orgId));
        }

        public Builder privileges(@Nullable Output> privileges) {
            $.privileges = privileges;
            return this;
        }

        public Builder privileges(List privileges) {
            return privileges(Output.of(privileges));
        }

        public Builder privileges(SsoRolePrivilegeArgs... privileges) {
            return privileges(List.of(privileges));
        }

        public SsoRoleState build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy