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

com.pulumi.alicloud.eventbridge.inputs.ConnectionAuthParametersOauthParametersOauthHttpParametersHeaderParameterArgs Maven / Gradle / Ivy

There is a newer version: 3.63.0-alpha.1727424957
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.alicloud.eventbridge.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 ConnectionAuthParametersOauthParametersOauthHttpParametersHeaderParameterArgs extends com.pulumi.resources.ResourceArgs {

    public static final ConnectionAuthParametersOauthParametersOauthHttpParametersHeaderParameterArgs Empty = new ConnectionAuthParametersOauthParametersOauthHttpParametersHeaderParameterArgs();

    /**
     * Specifies whether to enable authentication.
     * 
     */
    @Import(name="isValueSecret")
    private @Nullable Output isValueSecret;

    /**
     * @return Specifies whether to enable authentication.
     * 
     */
    public Optional> isValueSecret() {
        return Optional.ofNullable(this.isValueSecret);
    }

    /**
     * The key of the request path.
     * 
     */
    @Import(name="key")
    private @Nullable Output key;

    /**
     * @return The key of the request path.
     * 
     */
    public Optional> key() {
        return Optional.ofNullable(this.key);
    }

    /**
     * The key of the request path.
     * 
     */
    @Import(name="value")
    private @Nullable Output value;

    /**
     * @return The key of the request path.
     * 
     */
    public Optional> value() {
        return Optional.ofNullable(this.value);
    }

    private ConnectionAuthParametersOauthParametersOauthHttpParametersHeaderParameterArgs() {}

    private ConnectionAuthParametersOauthParametersOauthHttpParametersHeaderParameterArgs(ConnectionAuthParametersOauthParametersOauthHttpParametersHeaderParameterArgs $) {
        this.isValueSecret = $.isValueSecret;
        this.key = $.key;
        this.value = $.value;
    }

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

    public static final class Builder {
        private ConnectionAuthParametersOauthParametersOauthHttpParametersHeaderParameterArgs $;

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

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

        /**
         * @param isValueSecret Specifies whether to enable authentication.
         * 
         * @return builder
         * 
         */
        public Builder isValueSecret(@Nullable Output isValueSecret) {
            $.isValueSecret = isValueSecret;
            return this;
        }

        /**
         * @param isValueSecret Specifies whether to enable authentication.
         * 
         * @return builder
         * 
         */
        public Builder isValueSecret(String isValueSecret) {
            return isValueSecret(Output.of(isValueSecret));
        }

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

        /**
         * @param key The key of the request path.
         * 
         * @return builder
         * 
         */
        public Builder key(String key) {
            return key(Output.of(key));
        }

        /**
         * @param value The key of the request path.
         * 
         * @return builder
         * 
         */
        public Builder value(@Nullable Output value) {
            $.value = value;
            return this;
        }

        /**
         * @param value The key of the request path.
         * 
         * @return builder
         * 
         */
        public Builder value(String value) {
            return value(Output.of(value));
        }

        public ConnectionAuthParametersOauthParametersOauthHttpParametersHeaderParameterArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy