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

com.pulumi.ise.trustsec.inputs.IpToSgtMappingGroupState 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-alpha.1727134725
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.trustsec.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;


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

    public static final IpToSgtMappingGroupState Empty = new IpToSgtMappingGroupState();

    /**
     * Mandatory unless `deploy_type` is `ALL`
     * 
     */
    @Import(name="deployTo")
    private @Nullable Output deployTo;

    /**
     * @return Mandatory unless `deploy_type` is `ALL`
     * 
     */
    public Optional> deployTo() {
        return Optional.ofNullable(this.deployTo);
    }

    /**
     * Deploy Type - Choices: `ALL`, `ND`, `NDG`
     * 
     */
    @Import(name="deployType")
    private @Nullable Output deployType;

    /**
     * @return Deploy Type - Choices: `ALL`, `ND`, `NDG`
     * 
     */
    public Optional> deployType() {
        return Optional.ofNullable(this.deployType);
    }

    /**
     * Description
     * 
     */
    @Import(name="description")
    private @Nullable Output description;

    /**
     * @return Description
     * 
     */
    public Optional> description() {
        return Optional.ofNullable(this.description);
    }

    /**
     * The name of the IP to SGT mapping Group
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return The name of the IP to SGT mapping Group
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * Trustsec Security Group ID
     * 
     */
    @Import(name="sgt")
    private @Nullable Output sgt;

    /**
     * @return Trustsec Security Group ID
     * 
     */
    public Optional> sgt() {
        return Optional.ofNullable(this.sgt);
    }

    private IpToSgtMappingGroupState() {}

    private IpToSgtMappingGroupState(IpToSgtMappingGroupState $) {
        this.deployTo = $.deployTo;
        this.deployType = $.deployType;
        this.description = $.description;
        this.name = $.name;
        this.sgt = $.sgt;
    }

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

    public static final class Builder {
        private IpToSgtMappingGroupState $;

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

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

        /**
         * @param deployTo Mandatory unless `deploy_type` is `ALL`
         * 
         * @return builder
         * 
         */
        public Builder deployTo(@Nullable Output deployTo) {
            $.deployTo = deployTo;
            return this;
        }

        /**
         * @param deployTo Mandatory unless `deploy_type` is `ALL`
         * 
         * @return builder
         * 
         */
        public Builder deployTo(String deployTo) {
            return deployTo(Output.of(deployTo));
        }

        /**
         * @param deployType Deploy Type - Choices: `ALL`, `ND`, `NDG`
         * 
         * @return builder
         * 
         */
        public Builder deployType(@Nullable Output deployType) {
            $.deployType = deployType;
            return this;
        }

        /**
         * @param deployType Deploy Type - Choices: `ALL`, `ND`, `NDG`
         * 
         * @return builder
         * 
         */
        public Builder deployType(String deployType) {
            return deployType(Output.of(deployType));
        }

        /**
         * @param description Description
         * 
         * @return builder
         * 
         */
        public Builder description(@Nullable Output description) {
            $.description = description;
            return this;
        }

        /**
         * @param description Description
         * 
         * @return builder
         * 
         */
        public Builder description(String description) {
            return description(Output.of(description));
        }

        /**
         * @param name The name of the IP to SGT mapping Group
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The name of the IP to SGT mapping Group
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param sgt Trustsec Security Group ID
         * 
         * @return builder
         * 
         */
        public Builder sgt(@Nullable Output sgt) {
            $.sgt = sgt;
            return this;
        }

        /**
         * @param sgt Trustsec Security Group ID
         * 
         * @return builder
         * 
         */
        public Builder sgt(String sgt) {
            return sgt(Output.of(sgt));
        }

        public IpToSgtMappingGroupState build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy