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

com.azure.spring.cloud.service.implementation.cosmos.CosmosClientProperties Maven / Gradle / Ivy

There is a newer version: 6.0.0-beta.4
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.spring.cloud.service.implementation.cosmos;

import com.azure.cosmos.ConnectionMode;
import com.azure.cosmos.ConsistencyLevel;
import com.azure.cosmos.ThrottlingRetryOptions;
import com.azure.spring.cloud.core.properties.AzureProperties;
import com.azure.spring.cloud.core.provider.authentication.KeyProvider;

import java.time.Duration;
import java.util.List;

/**
 * Configuration properties for Cosmos database, consistency, telemetry, connection, query metrics and diagnostics.
 */
public interface CosmosClientProperties extends AzureProperties, KeyProvider {

    /**
     * Get the cosmos service endpoint.
     * @return the cosmos service endpoint.
     */
    String getEndpoint();

    /**
     * Get the cosmos resource token.
     * @return the resource token.
     */
    String getResourceToken();

    /**
     * Get the client telemetry switch.
     * @return true or false.
     */
    Boolean getClientTelemetryEnabled();

    /**
     * Get the cosmos endpoint discovery switch.
     * @return true or false.
     */
    Boolean getEndpointDiscoveryEnabled();

    /**
     * Get the cosmos client connection sharing across clients switch.
     * @return true or false.
     */
    Boolean getConnectionSharingAcrossClientsEnabled();

    /**
     * Get the cosmos client content response on write switch.
     * @return true or false.
     */
    Boolean getContentResponseOnWriteEnabled();

    /**
     * Get the cosmos client multiple write region switch.
     * @return true or false.
     */
    Boolean getMultipleWriteRegionsEnabled();

    /**
     * Get the cosmos client session capturing override switch.
     * @return true or false.
     */
    Boolean getSessionCapturingOverrideEnabled();

    /**
     * Get the cosmos client session capturing override switch.
     * @return true or false.
     */
    Boolean getReadRequestsFallbackEnabled();

    /**
     * Get the cosmos client preferred regions.
     * @return the cosmos client preferred regions.
     */
    List getPreferredRegions();

    /**
     * Get the cosmos client gateway connection.
     * @return the cosmos client gateway connection.
     */
    GatewayConnectionProperties getGatewayConnection();

    /**
     * Get the cosmos client direct connection config.
     * @return the cosmos client direct connection config.
     */
    DirectConnectionProperties getDirectConnection();

    /**
     * Get the cosmos client consistency level.
     * @return the cosmos client consistency level.
     */
    ConsistencyLevel getConsistencyLevel();

    /**
     * Get the cosmos database name.
     * @return the cosmos database name.
     */
    String getDatabase();

    /**
     * Get the cosmos client connection mode.
     * @return the cosmos client connection mode.
     */
    ConnectionMode getConnectionMode();

    /**
     * Get the cosmos client throttling retry options.
     * @return the cosmos client throttling retry options.
     */
    ThrottlingRetryOptions getThrottlingRetryOptions();


    interface GatewayConnectionProperties {

        Integer getMaxConnectionPoolSize();

        Duration getIdleConnectionTimeout();

    }

    interface DirectConnectionProperties {

        Boolean getConnectionEndpointRediscoveryEnabled();

        Duration getConnectTimeout();

        Duration getIdleConnectionTimeout();

        Duration getIdleEndpointTimeout();

        Duration getNetworkRequestTimeout();

        Integer getMaxConnectionsPerEndpoint();

        Integer getMaxRequestsPerConnection();

    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy