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

com.pulumi.aws.ec2.inputs.GetVpcIpamPoolPlainArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.60.0-alpha.1731982519
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.aws.ec2.inputs;

import com.pulumi.aws.ec2.inputs.GetVpcIpamPoolFilter;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final GetVpcIpamPoolPlainArgs Empty = new GetVpcIpamPoolPlainArgs();

    /**
     * Tags that are required to create resources in using this pool.
     * 
     */
    @Import(name="allocationResourceTags")
    private @Nullable Map allocationResourceTags;

    /**
     * @return Tags that are required to create resources in using this pool.
     * 
     */
    public Optional> allocationResourceTags() {
        return Optional.ofNullable(this.allocationResourceTags);
    }

    /**
     * Custom filter block as described below.
     * 
     */
    @Import(name="filters")
    private @Nullable List filters;

    /**
     * @return Custom filter block as described below.
     * 
     */
    public Optional> filters() {
        return Optional.ofNullable(this.filters);
    }

    /**
     * ID of the IPAM pool.
     * 
     */
    @Import(name="id")
    private @Nullable String id;

    /**
     * @return ID of the IPAM pool.
     * 
     */
    public Optional id() {
        return Optional.ofNullable(this.id);
    }

    /**
     * ID of the IPAM pool you would like information on.
     * 
     */
    @Import(name="ipamPoolId")
    private @Nullable String ipamPoolId;

    /**
     * @return ID of the IPAM pool you would like information on.
     * 
     */
    public Optional ipamPoolId() {
        return Optional.ofNullable(this.ipamPoolId);
    }

    /**
     * Map of tags to assigned to the resource.
     * 
     */
    @Import(name="tags")
    private @Nullable Map tags;

    /**
     * @return Map of tags to assigned to the resource.
     * 
     */
    public Optional> tags() {
        return Optional.ofNullable(this.tags);
    }

    private GetVpcIpamPoolPlainArgs() {}

    private GetVpcIpamPoolPlainArgs(GetVpcIpamPoolPlainArgs $) {
        this.allocationResourceTags = $.allocationResourceTags;
        this.filters = $.filters;
        this.id = $.id;
        this.ipamPoolId = $.ipamPoolId;
        this.tags = $.tags;
    }

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

    public static final class Builder {
        private GetVpcIpamPoolPlainArgs $;

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

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

        /**
         * @param allocationResourceTags Tags that are required to create resources in using this pool.
         * 
         * @return builder
         * 
         */
        public Builder allocationResourceTags(@Nullable Map allocationResourceTags) {
            $.allocationResourceTags = allocationResourceTags;
            return this;
        }

        /**
         * @param filters Custom filter block as described below.
         * 
         * @return builder
         * 
         */
        public Builder filters(@Nullable List filters) {
            $.filters = filters;
            return this;
        }

        /**
         * @param filters Custom filter block as described below.
         * 
         * @return builder
         * 
         */
        public Builder filters(GetVpcIpamPoolFilter... filters) {
            return filters(List.of(filters));
        }

        /**
         * @param id ID of the IPAM pool.
         * 
         * @return builder
         * 
         */
        public Builder id(@Nullable String id) {
            $.id = id;
            return this;
        }

        /**
         * @param ipamPoolId ID of the IPAM pool you would like information on.
         * 
         * @return builder
         * 
         */
        public Builder ipamPoolId(@Nullable String ipamPoolId) {
            $.ipamPoolId = ipamPoolId;
            return this;
        }

        /**
         * @param tags Map of tags to assigned to the resource.
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Map tags) {
            $.tags = tags;
            return this;
        }

        public GetVpcIpamPoolPlainArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy