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

com.pulumi.azurenative.datadog.inputs.DatadogOrganizationPropertiesArgs 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.datadog.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;


/**
 * Datadog organization properties
 * 
 */
public final class DatadogOrganizationPropertiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final DatadogOrganizationPropertiesArgs Empty = new DatadogOrganizationPropertiesArgs();

    /**
     * Api key associated to the Datadog organization.
     * 
     */
    @Import(name="apiKey")
    private @Nullable Output apiKey;

    /**
     * @return Api key associated to the Datadog organization.
     * 
     */
    public Optional> apiKey() {
        return Optional.ofNullable(this.apiKey);
    }

    /**
     * Application key associated to the Datadog organization.
     * 
     */
    @Import(name="applicationKey")
    private @Nullable Output applicationKey;

    /**
     * @return Application key associated to the Datadog organization.
     * 
     */
    public Optional> applicationKey() {
        return Optional.ofNullable(this.applicationKey);
    }

    /**
     * The Id of the Enterprise App used for Single sign on.
     * 
     */
    @Import(name="enterpriseAppId")
    private @Nullable Output enterpriseAppId;

    /**
     * @return The Id of the Enterprise App used for Single sign on.
     * 
     */
    public Optional> enterpriseAppId() {
        return Optional.ofNullable(this.enterpriseAppId);
    }

    /**
     * Id of the Datadog organization.
     * 
     */
    @Import(name="id")
    private @Nullable Output id;

    /**
     * @return Id of the Datadog organization.
     * 
     */
    public Optional> id() {
        return Optional.ofNullable(this.id);
    }

    /**
     * The auth code used to linking to an existing datadog organization.
     * 
     */
    @Import(name="linkingAuthCode")
    private @Nullable Output linkingAuthCode;

    /**
     * @return The auth code used to linking to an existing datadog organization.
     * 
     */
    public Optional> linkingAuthCode() {
        return Optional.ofNullable(this.linkingAuthCode);
    }

    /**
     * The client_id from an existing in exchange for an auth token to link organization.
     * 
     */
    @Import(name="linkingClientId")
    private @Nullable Output linkingClientId;

    /**
     * @return The client_id from an existing in exchange for an auth token to link organization.
     * 
     */
    public Optional> linkingClientId() {
        return Optional.ofNullable(this.linkingClientId);
    }

    /**
     * Name of the Datadog organization.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Name of the Datadog organization.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * The redirect uri for linking.
     * 
     */
    @Import(name="redirectUri")
    private @Nullable Output redirectUri;

    /**
     * @return The redirect uri for linking.
     * 
     */
    public Optional> redirectUri() {
        return Optional.ofNullable(this.redirectUri);
    }

    private DatadogOrganizationPropertiesArgs() {}

    private DatadogOrganizationPropertiesArgs(DatadogOrganizationPropertiesArgs $) {
        this.apiKey = $.apiKey;
        this.applicationKey = $.applicationKey;
        this.enterpriseAppId = $.enterpriseAppId;
        this.id = $.id;
        this.linkingAuthCode = $.linkingAuthCode;
        this.linkingClientId = $.linkingClientId;
        this.name = $.name;
        this.redirectUri = $.redirectUri;
    }

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

    public static final class Builder {
        private DatadogOrganizationPropertiesArgs $;

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

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

        /**
         * @param apiKey Api key associated to the Datadog organization.
         * 
         * @return builder
         * 
         */
        public Builder apiKey(@Nullable Output apiKey) {
            $.apiKey = apiKey;
            return this;
        }

        /**
         * @param apiKey Api key associated to the Datadog organization.
         * 
         * @return builder
         * 
         */
        public Builder apiKey(String apiKey) {
            return apiKey(Output.of(apiKey));
        }

        /**
         * @param applicationKey Application key associated to the Datadog organization.
         * 
         * @return builder
         * 
         */
        public Builder applicationKey(@Nullable Output applicationKey) {
            $.applicationKey = applicationKey;
            return this;
        }

        /**
         * @param applicationKey Application key associated to the Datadog organization.
         * 
         * @return builder
         * 
         */
        public Builder applicationKey(String applicationKey) {
            return applicationKey(Output.of(applicationKey));
        }

        /**
         * @param enterpriseAppId The Id of the Enterprise App used for Single sign on.
         * 
         * @return builder
         * 
         */
        public Builder enterpriseAppId(@Nullable Output enterpriseAppId) {
            $.enterpriseAppId = enterpriseAppId;
            return this;
        }

        /**
         * @param enterpriseAppId The Id of the Enterprise App used for Single sign on.
         * 
         * @return builder
         * 
         */
        public Builder enterpriseAppId(String enterpriseAppId) {
            return enterpriseAppId(Output.of(enterpriseAppId));
        }

        /**
         * @param id Id of the Datadog organization.
         * 
         * @return builder
         * 
         */
        public Builder id(@Nullable Output id) {
            $.id = id;
            return this;
        }

        /**
         * @param id Id of the Datadog organization.
         * 
         * @return builder
         * 
         */
        public Builder id(String id) {
            return id(Output.of(id));
        }

        /**
         * @param linkingAuthCode The auth code used to linking to an existing datadog organization.
         * 
         * @return builder
         * 
         */
        public Builder linkingAuthCode(@Nullable Output linkingAuthCode) {
            $.linkingAuthCode = linkingAuthCode;
            return this;
        }

        /**
         * @param linkingAuthCode The auth code used to linking to an existing datadog organization.
         * 
         * @return builder
         * 
         */
        public Builder linkingAuthCode(String linkingAuthCode) {
            return linkingAuthCode(Output.of(linkingAuthCode));
        }

        /**
         * @param linkingClientId The client_id from an existing in exchange for an auth token to link organization.
         * 
         * @return builder
         * 
         */
        public Builder linkingClientId(@Nullable Output linkingClientId) {
            $.linkingClientId = linkingClientId;
            return this;
        }

        /**
         * @param linkingClientId The client_id from an existing in exchange for an auth token to link organization.
         * 
         * @return builder
         * 
         */
        public Builder linkingClientId(String linkingClientId) {
            return linkingClientId(Output.of(linkingClientId));
        }

        /**
         * @param name Name of the Datadog organization.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Name of the Datadog organization.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param redirectUri The redirect uri for linking.
         * 
         * @return builder
         * 
         */
        public Builder redirectUri(@Nullable Output redirectUri) {
            $.redirectUri = redirectUri;
            return this;
        }

        /**
         * @param redirectUri The redirect uri for linking.
         * 
         * @return builder
         * 
         */
        public Builder redirectUri(String redirectUri) {
            return redirectUri(Output.of(redirectUri));
        }

        public DatadogOrganizationPropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy