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

com.svix.kotlin.models.SnowflakeConfig.kt Maven / Gradle / Ivy

/**
* Svix API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.1.1
* 
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.svix.kotlin.models


import com.squareup.moshi.Json

/**
 * Configuration parameters for defining a Snowflake sink.
 * @param accountIdentifier Snowflake account identifier, which includes both the organization and account IDs separated by a hyphen.
 * @param privateKey PEM-encoded private key used for signing token-based requests to the Snowflake API.  Beginning/end delimiters are not required.
 * @param userId The Snowflake user id.
 * @param dbName Database name.  Only required if not using transformations.
 * @param schemaName Schema name.  Only required if not using transformations.
 * @param tableName Table name.  Only required if not using transformations.
 */

data class SnowflakeConfig (
    /* Snowflake account identifier, which includes both the organization and account IDs separated by a hyphen. */
    @Json(name = "accountIdentifier")
    val accountIdentifier: kotlin.String,
    /* PEM-encoded private key used for signing token-based requests to the Snowflake API.  Beginning/end delimiters are not required. */
    @Json(name = "privateKey")
    val privateKey: kotlin.String,
    /* The Snowflake user id. */
    @Json(name = "userId")
    val userId: kotlin.String,
    /* Database name.  Only required if not using transformations. */
    @Json(name = "dbName")
    val dbName: kotlin.String? = null,
    /* Schema name.  Only required if not using transformations. */
    @Json(name = "schemaName")
    val schemaName: kotlin.String? = null,
    /* Table name.  Only required if not using transformations. */
    @Json(name = "tableName")
    val tableName: kotlin.String? = null
)





© 2015 - 2024 Weber Informatics LLC | Privacy Policy