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

com.pulumi.ise.networkaccess.inputs.GetAuthorizationExceptionRuleArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.

There is a newer version: 0.2.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.ise.networkaccess.inputs;

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


public final class GetAuthorizationExceptionRuleArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetAuthorizationExceptionRuleArgs Empty = new GetAuthorizationExceptionRuleArgs();

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

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

    /**
     * Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * Policy set ID
     * 
     */
    @Import(name="policySetId", required=true)
    private Output policySetId;

    /**
     * @return Policy set ID
     * 
     */
    public Output policySetId() {
        return this.policySetId;
    }

    private GetAuthorizationExceptionRuleArgs() {}

    private GetAuthorizationExceptionRuleArgs(GetAuthorizationExceptionRuleArgs $) {
        this.id = $.id;
        this.name = $.name;
        this.policySetId = $.policySetId;
    }

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

    public static final class Builder {
        private GetAuthorizationExceptionRuleArgs $;

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

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

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

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

        /**
         * @param name Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param policySetId Policy set ID
         * 
         * @return builder
         * 
         */
        public Builder policySetId(Output policySetId) {
            $.policySetId = policySetId;
            return this;
        }

        /**
         * @param policySetId Policy set ID
         * 
         * @return builder
         * 
         */
        public Builder policySetId(String policySetId) {
            return policySetId(Output.of(policySetId));
        }

        public GetAuthorizationExceptionRuleArgs build() {
            if ($.policySetId == null) {
                throw new MissingRequiredPropertyException("GetAuthorizationExceptionRuleArgs", "policySetId");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy