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

com.pulumi.azurenative.migrate.inputs.CollectorAgentSpnPropertiesBaseArgs Maven / Gradle / Ivy

// *** 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.migrate.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;


/**
 * Collector agent SPN details class.
 * 
 */
public final class CollectorAgentSpnPropertiesBaseArgs extends com.pulumi.resources.ResourceArgs {

    public static final CollectorAgentSpnPropertiesBaseArgs Empty = new CollectorAgentSpnPropertiesBaseArgs();

    /**
     * Gets the AAD application id.
     * 
     */
    @Import(name="applicationId")
    private @Nullable Output applicationId;

    /**
     * @return Gets the AAD application id.
     * 
     */
    public Optional> applicationId() {
        return Optional.ofNullable(this.applicationId);
    }

    /**
     * Gets the AAD audience url.
     * 
     */
    @Import(name="audience")
    private @Nullable Output audience;

    /**
     * @return Gets the AAD audience url.
     * 
     */
    public Optional> audience() {
        return Optional.ofNullable(this.audience);
    }

    /**
     * Gets the AAD authority endpoint.
     * 
     */
    @Import(name="authority")
    private @Nullable Output authority;

    /**
     * @return Gets the AAD authority endpoint.
     * 
     */
    public Optional> authority() {
        return Optional.ofNullable(this.authority);
    }

    /**
     * Gets the object id of the AAD application.
     * 
     */
    @Import(name="objectId")
    private @Nullable Output objectId;

    /**
     * @return Gets the object id of the AAD application.
     * 
     */
    public Optional> objectId() {
        return Optional.ofNullable(this.objectId);
    }

    /**
     * Gets the tenant id of the AAD application.
     * 
     */
    @Import(name="tenantId")
    private @Nullable Output tenantId;

    /**
     * @return Gets the tenant id of the AAD application.
     * 
     */
    public Optional> tenantId() {
        return Optional.ofNullable(this.tenantId);
    }

    private CollectorAgentSpnPropertiesBaseArgs() {}

    private CollectorAgentSpnPropertiesBaseArgs(CollectorAgentSpnPropertiesBaseArgs $) {
        this.applicationId = $.applicationId;
        this.audience = $.audience;
        this.authority = $.authority;
        this.objectId = $.objectId;
        this.tenantId = $.tenantId;
    }

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

    public static final class Builder {
        private CollectorAgentSpnPropertiesBaseArgs $;

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

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

        /**
         * @param applicationId Gets the AAD application id.
         * 
         * @return builder
         * 
         */
        public Builder applicationId(@Nullable Output applicationId) {
            $.applicationId = applicationId;
            return this;
        }

        /**
         * @param applicationId Gets the AAD application id.
         * 
         * @return builder
         * 
         */
        public Builder applicationId(String applicationId) {
            return applicationId(Output.of(applicationId));
        }

        /**
         * @param audience Gets the AAD audience url.
         * 
         * @return builder
         * 
         */
        public Builder audience(@Nullable Output audience) {
            $.audience = audience;
            return this;
        }

        /**
         * @param audience Gets the AAD audience url.
         * 
         * @return builder
         * 
         */
        public Builder audience(String audience) {
            return audience(Output.of(audience));
        }

        /**
         * @param authority Gets the AAD authority endpoint.
         * 
         * @return builder
         * 
         */
        public Builder authority(@Nullable Output authority) {
            $.authority = authority;
            return this;
        }

        /**
         * @param authority Gets the AAD authority endpoint.
         * 
         * @return builder
         * 
         */
        public Builder authority(String authority) {
            return authority(Output.of(authority));
        }

        /**
         * @param objectId Gets the object id of the AAD application.
         * 
         * @return builder
         * 
         */
        public Builder objectId(@Nullable Output objectId) {
            $.objectId = objectId;
            return this;
        }

        /**
         * @param objectId Gets the object id of the AAD application.
         * 
         * @return builder
         * 
         */
        public Builder objectId(String objectId) {
            return objectId(Output.of(objectId));
        }

        /**
         * @param tenantId Gets the tenant id of the AAD application.
         * 
         * @return builder
         * 
         */
        public Builder tenantId(@Nullable Output tenantId) {
            $.tenantId = tenantId;
            return this;
        }

        /**
         * @param tenantId Gets the tenant id of the AAD application.
         * 
         * @return builder
         * 
         */
        public Builder tenantId(String tenantId) {
            return tenantId(Output.of(tenantId));
        }

        public CollectorAgentSpnPropertiesBaseArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy