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

com.pulumi.azure.appplatform.inputs.SpringCloudAppDynamicsApplicationPerformanceMonitoringState Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
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.azure.appplatform.inputs;

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


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

    public static final SpringCloudAppDynamicsApplicationPerformanceMonitoringState Empty = new SpringCloudAppDynamicsApplicationPerformanceMonitoringState();

    /**
     * Specifies the account access key used to authenticate with the Controller.
     * 
     */
    @Import(name="agentAccountAccessKey")
    private @Nullable Output agentAccountAccessKey;

    /**
     * @return Specifies the account access key used to authenticate with the Controller.
     * 
     */
    public Optional> agentAccountAccessKey() {
        return Optional.ofNullable(this.agentAccountAccessKey);
    }

    /**
     * Specifies the account name of the App Dynamics account.
     * 
     */
    @Import(name="agentAccountName")
    private @Nullable Output agentAccountName;

    /**
     * @return Specifies the account name of the App Dynamics account.
     * 
     */
    public Optional> agentAccountName() {
        return Optional.ofNullable(this.agentAccountName);
    }

    /**
     * Specifies the name of the logical business application that this JVM node belongs to.
     * 
     */
    @Import(name="agentApplicationName")
    private @Nullable Output agentApplicationName;

    /**
     * @return Specifies the name of the logical business application that this JVM node belongs to.
     * 
     */
    public Optional> agentApplicationName() {
        return Optional.ofNullable(this.agentApplicationName);
    }

    /**
     * Specifies the name of the node. Where JVMs are dynamically created.
     * 
     */
    @Import(name="agentNodeName")
    private @Nullable Output agentNodeName;

    /**
     * @return Specifies the name of the node. Where JVMs are dynamically created.
     * 
     */
    public Optional> agentNodeName() {
        return Optional.ofNullable(this.agentNodeName);
    }

    /**
     * Specifies the name of the tier that this JVM node belongs to.
     * 
     */
    @Import(name="agentTierName")
    private @Nullable Output agentTierName;

    /**
     * @return Specifies the name of the tier that this JVM node belongs to.
     * 
     */
    public Optional> agentTierName() {
        return Optional.ofNullable(this.agentTierName);
    }

    /**
     * Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
     * 
     */
    @Import(name="agentUniqueHostId")
    private @Nullable Output agentUniqueHostId;

    /**
     * @return Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
     * 
     */
    public Optional> agentUniqueHostId() {
        return Optional.ofNullable(this.agentUniqueHostId);
    }

    /**
     * Specifies the hostname or the IP address of the AppDynamics Controller.
     * 
     */
    @Import(name="controllerHostName")
    private @Nullable Output controllerHostName;

    /**
     * @return Specifies the hostname or the IP address of the AppDynamics Controller.
     * 
     */
    public Optional> controllerHostName() {
        return Optional.ofNullable(this.controllerHostName);
    }

    /**
     * Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
     * 
     */
    @Import(name="controllerPort")
    private @Nullable Output controllerPort;

    /**
     * @return Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
     * 
     */
    public Optional> controllerPort() {
        return Optional.ofNullable(this.controllerPort);
    }

    /**
     * Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
     * 
     */
    @Import(name="controllerSslEnabled")
    private @Nullable Output controllerSslEnabled;

    /**
     * @return Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
     * 
     */
    public Optional> controllerSslEnabled() {
        return Optional.ofNullable(this.controllerSslEnabled);
    }

    /**
     * Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to `false`.
     * 
     */
    @Import(name="globallyEnabled")
    private @Nullable Output globallyEnabled;

    /**
     * @return Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to `false`.
     * 
     */
    public Optional> globallyEnabled() {
        return Optional.ofNullable(this.globallyEnabled);
    }

    /**
     * The name which should be used for this Spring Cloud Application Performance Monitoring resource for App Dynamics. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return The name which should be used for this Spring Cloud Application Performance Monitoring resource for App Dynamics. Changing this forces a new resource to be created.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="springCloudServiceId")
    private @Nullable Output springCloudServiceId;

    /**
     * @return The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
     * 
     */
    public Optional> springCloudServiceId() {
        return Optional.ofNullable(this.springCloudServiceId);
    }

    private SpringCloudAppDynamicsApplicationPerformanceMonitoringState() {}

    private SpringCloudAppDynamicsApplicationPerformanceMonitoringState(SpringCloudAppDynamicsApplicationPerformanceMonitoringState $) {
        this.agentAccountAccessKey = $.agentAccountAccessKey;
        this.agentAccountName = $.agentAccountName;
        this.agentApplicationName = $.agentApplicationName;
        this.agentNodeName = $.agentNodeName;
        this.agentTierName = $.agentTierName;
        this.agentUniqueHostId = $.agentUniqueHostId;
        this.controllerHostName = $.controllerHostName;
        this.controllerPort = $.controllerPort;
        this.controllerSslEnabled = $.controllerSslEnabled;
        this.globallyEnabled = $.globallyEnabled;
        this.name = $.name;
        this.springCloudServiceId = $.springCloudServiceId;
    }

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

    public static final class Builder {
        private SpringCloudAppDynamicsApplicationPerformanceMonitoringState $;

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

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

        /**
         * @param agentAccountAccessKey Specifies the account access key used to authenticate with the Controller.
         * 
         * @return builder
         * 
         */
        public Builder agentAccountAccessKey(@Nullable Output agentAccountAccessKey) {
            $.agentAccountAccessKey = agentAccountAccessKey;
            return this;
        }

        /**
         * @param agentAccountAccessKey Specifies the account access key used to authenticate with the Controller.
         * 
         * @return builder
         * 
         */
        public Builder agentAccountAccessKey(String agentAccountAccessKey) {
            return agentAccountAccessKey(Output.of(agentAccountAccessKey));
        }

        /**
         * @param agentAccountName Specifies the account name of the App Dynamics account.
         * 
         * @return builder
         * 
         */
        public Builder agentAccountName(@Nullable Output agentAccountName) {
            $.agentAccountName = agentAccountName;
            return this;
        }

        /**
         * @param agentAccountName Specifies the account name of the App Dynamics account.
         * 
         * @return builder
         * 
         */
        public Builder agentAccountName(String agentAccountName) {
            return agentAccountName(Output.of(agentAccountName));
        }

        /**
         * @param agentApplicationName Specifies the name of the logical business application that this JVM node belongs to.
         * 
         * @return builder
         * 
         */
        public Builder agentApplicationName(@Nullable Output agentApplicationName) {
            $.agentApplicationName = agentApplicationName;
            return this;
        }

        /**
         * @param agentApplicationName Specifies the name of the logical business application that this JVM node belongs to.
         * 
         * @return builder
         * 
         */
        public Builder agentApplicationName(String agentApplicationName) {
            return agentApplicationName(Output.of(agentApplicationName));
        }

        /**
         * @param agentNodeName Specifies the name of the node. Where JVMs are dynamically created.
         * 
         * @return builder
         * 
         */
        public Builder agentNodeName(@Nullable Output agentNodeName) {
            $.agentNodeName = agentNodeName;
            return this;
        }

        /**
         * @param agentNodeName Specifies the name of the node. Where JVMs are dynamically created.
         * 
         * @return builder
         * 
         */
        public Builder agentNodeName(String agentNodeName) {
            return agentNodeName(Output.of(agentNodeName));
        }

        /**
         * @param agentTierName Specifies the name of the tier that this JVM node belongs to.
         * 
         * @return builder
         * 
         */
        public Builder agentTierName(@Nullable Output agentTierName) {
            $.agentTierName = agentTierName;
            return this;
        }

        /**
         * @param agentTierName Specifies the name of the tier that this JVM node belongs to.
         * 
         * @return builder
         * 
         */
        public Builder agentTierName(String agentTierName) {
            return agentTierName(Output.of(agentTierName));
        }

        /**
         * @param agentUniqueHostId Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
         * 
         * @return builder
         * 
         */
        public Builder agentUniqueHostId(@Nullable Output agentUniqueHostId) {
            $.agentUniqueHostId = agentUniqueHostId;
            return this;
        }

        /**
         * @param agentUniqueHostId Specifies the unique host ID which is used to Logically partition a single physical host or virtual machine such that it appears to the Controller that the application is running on different machines.
         * 
         * @return builder
         * 
         */
        public Builder agentUniqueHostId(String agentUniqueHostId) {
            return agentUniqueHostId(Output.of(agentUniqueHostId));
        }

        /**
         * @param controllerHostName Specifies the hostname or the IP address of the AppDynamics Controller.
         * 
         * @return builder
         * 
         */
        public Builder controllerHostName(@Nullable Output controllerHostName) {
            $.controllerHostName = controllerHostName;
            return this;
        }

        /**
         * @param controllerHostName Specifies the hostname or the IP address of the AppDynamics Controller.
         * 
         * @return builder
         * 
         */
        public Builder controllerHostName(String controllerHostName) {
            return controllerHostName(Output.of(controllerHostName));
        }

        /**
         * @param controllerPort Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
         * 
         * @return builder
         * 
         */
        public Builder controllerPort(@Nullable Output controllerPort) {
            $.controllerPort = controllerPort;
            return this;
        }

        /**
         * @param controllerPort Specifies the HTTP(S) port of the AppDynamics Controller. This is the port used to access the AppDynamics browser-based user interface.
         * 
         * @return builder
         * 
         */
        public Builder controllerPort(Integer controllerPort) {
            return controllerPort(Output.of(controllerPort));
        }

        /**
         * @param controllerSslEnabled Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
         * 
         * @return builder
         * 
         */
        public Builder controllerSslEnabled(@Nullable Output controllerSslEnabled) {
            $.controllerSslEnabled = controllerSslEnabled;
            return this;
        }

        /**
         * @param controllerSslEnabled Specifies whether enable use SSL (HTTPS) to connect to the AppDynamics Controller.
         * 
         * @return builder
         * 
         */
        public Builder controllerSslEnabled(Boolean controllerSslEnabled) {
            return controllerSslEnabled(Output.of(controllerSslEnabled));
        }

        /**
         * @param globallyEnabled Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder globallyEnabled(@Nullable Output globallyEnabled) {
            $.globallyEnabled = globallyEnabled;
            return this;
        }

        /**
         * @param globallyEnabled Specifies whether the Spring Cloud Application Performance Monitoring resource for Application Insights is enabled globally. Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder globallyEnabled(Boolean globallyEnabled) {
            return globallyEnabled(Output.of(globallyEnabled));
        }

        /**
         * @param name The name which should be used for this Spring Cloud Application Performance Monitoring resource for App Dynamics. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The name which should be used for this Spring Cloud Application Performance Monitoring resource for App Dynamics. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param springCloudServiceId The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder springCloudServiceId(@Nullable Output springCloudServiceId) {
            $.springCloudServiceId = springCloudServiceId;
            return this;
        }

        /**
         * @param springCloudServiceId The ID of the Spring Cloud Service. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder springCloudServiceId(String springCloudServiceId) {
            return springCloudServiceId(Output.of(springCloudServiceId));
        }

        public SpringCloudAppDynamicsApplicationPerformanceMonitoringState build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy