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

com.pulumi.azurenative.datafactory.inputs.GitHubClientSecretArgs Maven / Gradle / Ivy

There is a newer version: 2.89.2
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.azurenative.datafactory.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;


/**
 * Client secret information for factory's bring your own app repository configuration.
 * 
 */
public final class GitHubClientSecretArgs extends com.pulumi.resources.ResourceArgs {

    public static final GitHubClientSecretArgs Empty = new GitHubClientSecretArgs();

    /**
     * Bring your own app client secret AKV URL.
     * 
     */
    @Import(name="byoaSecretAkvUrl")
    private @Nullable Output byoaSecretAkvUrl;

    /**
     * @return Bring your own app client secret AKV URL.
     * 
     */
    public Optional> byoaSecretAkvUrl() {
        return Optional.ofNullable(this.byoaSecretAkvUrl);
    }

    /**
     * Bring your own app client secret name in AKV.
     * 
     */
    @Import(name="byoaSecretName")
    private @Nullable Output byoaSecretName;

    /**
     * @return Bring your own app client secret name in AKV.
     * 
     */
    public Optional> byoaSecretName() {
        return Optional.ofNullable(this.byoaSecretName);
    }

    private GitHubClientSecretArgs() {}

    private GitHubClientSecretArgs(GitHubClientSecretArgs $) {
        this.byoaSecretAkvUrl = $.byoaSecretAkvUrl;
        this.byoaSecretName = $.byoaSecretName;
    }

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

    public static final class Builder {
        private GitHubClientSecretArgs $;

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

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

        /**
         * @param byoaSecretAkvUrl Bring your own app client secret AKV URL.
         * 
         * @return builder
         * 
         */
        public Builder byoaSecretAkvUrl(@Nullable Output byoaSecretAkvUrl) {
            $.byoaSecretAkvUrl = byoaSecretAkvUrl;
            return this;
        }

        /**
         * @param byoaSecretAkvUrl Bring your own app client secret AKV URL.
         * 
         * @return builder
         * 
         */
        public Builder byoaSecretAkvUrl(String byoaSecretAkvUrl) {
            return byoaSecretAkvUrl(Output.of(byoaSecretAkvUrl));
        }

        /**
         * @param byoaSecretName Bring your own app client secret name in AKV.
         * 
         * @return builder
         * 
         */
        public Builder byoaSecretName(@Nullable Output byoaSecretName) {
            $.byoaSecretName = byoaSecretName;
            return this;
        }

        /**
         * @param byoaSecretName Bring your own app client secret name in AKV.
         * 
         * @return builder
         * 
         */
        public Builder byoaSecretName(String byoaSecretName) {
            return byoaSecretName(Output.of(byoaSecretName));
        }

        public GitHubClientSecretArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy