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

com.pulumi.akamai.inputs.EdgekvGroupItemsState Maven / Gradle / Ivy

The 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.akamai.inputs;

import com.pulumi.akamai.inputs.EdgekvGroupItemsTimeoutsArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final EdgekvGroupItemsState Empty = new EdgekvGroupItemsState();

    /**
     * The name of the EdgeKV group.
     * 
     */
    @Import(name="groupName")
    private @Nullable Output groupName;

    /**
     * @return The name of the EdgeKV group.
     * 
     */
    public Optional> groupName() {
        return Optional.ofNullable(this.groupName);
    }

    /**
     * A map of items within the specified group. Each item consists of an item key and a value.
     * 
     */
    @Import(name="items")
    private @Nullable Output> items;

    /**
     * @return A map of items within the specified group. Each item consists of an item key and a value.
     * 
     */
    public Optional>> items() {
        return Optional.ofNullable(this.items);
    }

    /**
     * The name for the EdgeKV namespace.
     * 
     */
    @Import(name="namespaceName")
    private @Nullable Output namespaceName;

    /**
     * @return The name for the EdgeKV namespace.
     * 
     */
    public Optional> namespaceName() {
        return Optional.ofNullable(this.namespaceName);
    }

    /**
     * The network against which to execute the API request.
     * 
     */
    @Import(name="network")
    private @Nullable Output network;

    /**
     * @return The network against which to execute the API request.
     * 
     */
    public Optional> network() {
        return Optional.ofNullable(this.network);
    }

    /**
     * Enables to set timeout for processing
     * 
     */
    @Import(name="timeouts")
    private @Nullable Output timeouts;

    /**
     * @return Enables to set timeout for processing
     * 
     */
    public Optional> timeouts() {
        return Optional.ofNullable(this.timeouts);
    }

    private EdgekvGroupItemsState() {}

    private EdgekvGroupItemsState(EdgekvGroupItemsState $) {
        this.groupName = $.groupName;
        this.items = $.items;
        this.namespaceName = $.namespaceName;
        this.network = $.network;
        this.timeouts = $.timeouts;
    }

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

    public static final class Builder {
        private EdgekvGroupItemsState $;

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

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

        /**
         * @param groupName The name of the EdgeKV group.
         * 
         * @return builder
         * 
         */
        public Builder groupName(@Nullable Output groupName) {
            $.groupName = groupName;
            return this;
        }

        /**
         * @param groupName The name of the EdgeKV group.
         * 
         * @return builder
         * 
         */
        public Builder groupName(String groupName) {
            return groupName(Output.of(groupName));
        }

        /**
         * @param items A map of items within the specified group. Each item consists of an item key and a value.
         * 
         * @return builder
         * 
         */
        public Builder items(@Nullable Output> items) {
            $.items = items;
            return this;
        }

        /**
         * @param items A map of items within the specified group. Each item consists of an item key and a value.
         * 
         * @return builder
         * 
         */
        public Builder items(Map items) {
            return items(Output.of(items));
        }

        /**
         * @param namespaceName The name for the EdgeKV namespace.
         * 
         * @return builder
         * 
         */
        public Builder namespaceName(@Nullable Output namespaceName) {
            $.namespaceName = namespaceName;
            return this;
        }

        /**
         * @param namespaceName The name for the EdgeKV namespace.
         * 
         * @return builder
         * 
         */
        public Builder namespaceName(String namespaceName) {
            return namespaceName(Output.of(namespaceName));
        }

        /**
         * @param network The network against which to execute the API request.
         * 
         * @return builder
         * 
         */
        public Builder network(@Nullable Output network) {
            $.network = network;
            return this;
        }

        /**
         * @param network The network against which to execute the API request.
         * 
         * @return builder
         * 
         */
        public Builder network(String network) {
            return network(Output.of(network));
        }

        /**
         * @param timeouts Enables to set timeout for processing
         * 
         * @return builder
         * 
         */
        public Builder timeouts(@Nullable Output timeouts) {
            $.timeouts = timeouts;
            return this;
        }

        /**
         * @param timeouts Enables to set timeout for processing
         * 
         * @return builder
         * 
         */
        public Builder timeouts(EdgekvGroupItemsTimeoutsArgs timeouts) {
            return timeouts(Output.of(timeouts));
        }

        public EdgekvGroupItemsState build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy