com.pulumi.azurenative.datafactory.outputs.CosmosDbMongoDbApiSourceResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.datafactory.outputs;
import com.pulumi.azurenative.datafactory.outputs.MongoDbCursorMethodsPropertiesResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class CosmosDbMongoDbApiSourceResponse {
/**
* @return Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
*
*/
private @Nullable Object additionalColumns;
/**
* @return Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer).
*
*/
private @Nullable Object batchSize;
/**
* @return Cursor methods for Mongodb query.
*
*/
private @Nullable MongoDbCursorMethodsPropertiesResponse cursorMethods;
/**
* @return If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
*
*/
private @Nullable Object disableMetricsCollection;
/**
* @return Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string).
*
*/
private @Nullable Object filter;
/**
* @return The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
*
*/
private @Nullable Object maxConcurrentConnections;
/**
* @return Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*
*/
private @Nullable Object queryTimeout;
/**
* @return Source retry count. Type: integer (or Expression with resultType integer).
*
*/
private @Nullable Object sourceRetryCount;
/**
* @return Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*
*/
private @Nullable Object sourceRetryWait;
/**
* @return Copy source type.
* Expected value is 'CosmosDbMongoDbApiSource'.
*
*/
private String type;
private CosmosDbMongoDbApiSourceResponse() {}
/**
* @return Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy