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

com.pulumi.azurenative.awsconnector.inputs.ProjectBadgeArgs Maven / Gradle / Ivy

There is a newer version: 2.82.0
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.awsconnector.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Definition of ProjectBadge
 * 
 */
public final class ProjectBadgeArgs extends com.pulumi.resources.ResourceArgs {

    public static final ProjectBadgeArgs Empty = new ProjectBadgeArgs();

    /**
     * <p>Set this to true to generate a publicly accessible URL for your project's build badge.</p>
     * 
     */
    @Import(name="badgeEnabled")
    private @Nullable Output badgeEnabled;

    /**
     * @return <p>Set this to true to generate a publicly accessible URL for your project's build badge.</p>
     * 
     */
    public Optional> badgeEnabled() {
        return Optional.ofNullable(this.badgeEnabled);
    }

    /**
     * <p>The publicly-accessible URL through which you can access the build badge for your project. </p>
     * 
     */
    @Import(name="badgeRequestUrl")
    private @Nullable Output badgeRequestUrl;

    /**
     * @return <p>The publicly-accessible URL through which you can access the build badge for your project. </p>
     * 
     */
    public Optional> badgeRequestUrl() {
        return Optional.ofNullable(this.badgeRequestUrl);
    }

    private ProjectBadgeArgs() {}

    private ProjectBadgeArgs(ProjectBadgeArgs $) {
        this.badgeEnabled = $.badgeEnabled;
        this.badgeRequestUrl = $.badgeRequestUrl;
    }

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

    public static final class Builder {
        private ProjectBadgeArgs $;

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

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

        /**
         * @param badgeEnabled <p>Set this to true to generate a publicly accessible URL for your project's build badge.</p>
         * 
         * @return builder
         * 
         */
        public Builder badgeEnabled(@Nullable Output badgeEnabled) {
            $.badgeEnabled = badgeEnabled;
            return this;
        }

        /**
         * @param badgeEnabled <p>Set this to true to generate a publicly accessible URL for your project's build badge.</p>
         * 
         * @return builder
         * 
         */
        public Builder badgeEnabled(Boolean badgeEnabled) {
            return badgeEnabled(Output.of(badgeEnabled));
        }

        /**
         * @param badgeRequestUrl <p>The publicly-accessible URL through which you can access the build badge for your project. </p>
         * 
         * @return builder
         * 
         */
        public Builder badgeRequestUrl(@Nullable Output badgeRequestUrl) {
            $.badgeRequestUrl = badgeRequestUrl;
            return this;
        }

        /**
         * @param badgeRequestUrl <p>The publicly-accessible URL through which you can access the build badge for your project. </p>
         * 
         * @return builder
         * 
         */
        public Builder badgeRequestUrl(String badgeRequestUrl) {
            return badgeRequestUrl(Output.of(badgeRequestUrl));
        }

        public ProjectBadgeArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy