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

com.google.api.services.sqladmin.model.ImportContext Maven / Gradle / Ivy

The newest version!
/*
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
/*
 * This code was generated by https://github.com/googleapis/google-api-java-client-services/
 * Modify at your own risk.
 */

package com.google.api.services.sqladmin.model;

/**
 * Database instance import context.
 *
 * 

This is the Java data model class that specifies how to parse/serialize into the JSON that is * transmitted over HTTP when working with the Cloud SQL Admin API. For a detailed explanation see: * https://developers.google.com/api-client-library/java/google-http-java-client/json *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class ImportContext extends com.google.api.client.json.GenericJson { /** * Import parameters specific to SQL Server .BAK files * The value may be {@code null}. */ @com.google.api.client.util.Key private BakImportOptions bakImportOptions; /** * Options for importing data as CSV. * The value may be {@code null}. */ @com.google.api.client.util.Key private CsvImportOptions csvImportOptions; /** * The target database for the import. If `fileType` is `SQL`, this field is required only if the * import file does not specify a database, and is overridden by any database specification in the * import file. If `fileType` is `CSV`, one database must be specified. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String database; /** * The file type for the specified uri.\`SQL`: The file contains SQL statements. \`CSV`: The file * contains CSV data. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String fileType; /** * The PostgreSQL user for this import operation. PostgreSQL instances only. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String importUser; /** * This is always `sql#importContext`. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String kind; /** * Optional. Options for importing data from SQL statements. * The value may be {@code null}. */ @com.google.api.client.util.Key private SqlImportOptions sqlImportOptions; /** * Path to the import file in Cloud Storage, in the form `gs://bucketName/fileName`. Compressed * gzip files (.gz) are supported when `fileType` is `SQL`. The instance must have write * permissions to the bucket and read access to the file. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String uri; /** * Import parameters specific to SQL Server .BAK files * @return value or {@code null} for none */ public BakImportOptions getBakImportOptions() { return bakImportOptions; } /** * Import parameters specific to SQL Server .BAK files * @param bakImportOptions bakImportOptions or {@code null} for none */ public ImportContext setBakImportOptions(BakImportOptions bakImportOptions) { this.bakImportOptions = bakImportOptions; return this; } /** * Options for importing data as CSV. * @return value or {@code null} for none */ public CsvImportOptions getCsvImportOptions() { return csvImportOptions; } /** * Options for importing data as CSV. * @param csvImportOptions csvImportOptions or {@code null} for none */ public ImportContext setCsvImportOptions(CsvImportOptions csvImportOptions) { this.csvImportOptions = csvImportOptions; return this; } /** * The target database for the import. If `fileType` is `SQL`, this field is required only if the * import file does not specify a database, and is overridden by any database specification in the * import file. If `fileType` is `CSV`, one database must be specified. * @return value or {@code null} for none */ public java.lang.String getDatabase() { return database; } /** * The target database for the import. If `fileType` is `SQL`, this field is required only if the * import file does not specify a database, and is overridden by any database specification in the * import file. If `fileType` is `CSV`, one database must be specified. * @param database database or {@code null} for none */ public ImportContext setDatabase(java.lang.String database) { this.database = database; return this; } /** * The file type for the specified uri.\`SQL`: The file contains SQL statements. \`CSV`: The file * contains CSV data. * @return value or {@code null} for none */ public java.lang.String getFileType() { return fileType; } /** * The file type for the specified uri.\`SQL`: The file contains SQL statements. \`CSV`: The file * contains CSV data. * @param fileType fileType or {@code null} for none */ public ImportContext setFileType(java.lang.String fileType) { this.fileType = fileType; return this; } /** * The PostgreSQL user for this import operation. PostgreSQL instances only. * @return value or {@code null} for none */ public java.lang.String getImportUser() { return importUser; } /** * The PostgreSQL user for this import operation. PostgreSQL instances only. * @param importUser importUser or {@code null} for none */ public ImportContext setImportUser(java.lang.String importUser) { this.importUser = importUser; return this; } /** * This is always `sql#importContext`. * @return value or {@code null} for none */ public java.lang.String getKind() { return kind; } /** * This is always `sql#importContext`. * @param kind kind or {@code null} for none */ public ImportContext setKind(java.lang.String kind) { this.kind = kind; return this; } /** * Optional. Options for importing data from SQL statements. * @return value or {@code null} for none */ public SqlImportOptions getSqlImportOptions() { return sqlImportOptions; } /** * Optional. Options for importing data from SQL statements. * @param sqlImportOptions sqlImportOptions or {@code null} for none */ public ImportContext setSqlImportOptions(SqlImportOptions sqlImportOptions) { this.sqlImportOptions = sqlImportOptions; return this; } /** * Path to the import file in Cloud Storage, in the form `gs://bucketName/fileName`. Compressed * gzip files (.gz) are supported when `fileType` is `SQL`. The instance must have write * permissions to the bucket and read access to the file. * @return value or {@code null} for none */ public java.lang.String getUri() { return uri; } /** * Path to the import file in Cloud Storage, in the form `gs://bucketName/fileName`. Compressed * gzip files (.gz) are supported when `fileType` is `SQL`. The instance must have write * permissions to the bucket and read access to the file. * @param uri uri or {@code null} for none */ public ImportContext setUri(java.lang.String uri) { this.uri = uri; return this; } @Override public ImportContext set(String fieldName, Object value) { return (ImportContext) super.set(fieldName, value); } @Override public ImportContext clone() { return (ImportContext) super.clone(); } /** * Import parameters specific to SQL Server .BAK files */ public static final class BakImportOptions extends com.google.api.client.json.GenericJson { /** * Type of the bak content, FULL or DIFF * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String bakType; /** * The value may be {@code null}. */ @com.google.api.client.util.Key private EncryptionOptions encryptionOptions; /** * Whether or not the backup importing will restore database with NORECOVERY option Applies only * to Cloud SQL for SQL Server. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean noRecovery; /** * Whether or not the backup importing request will just bring database online without downloading * Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will * return. Applies only to Cloud SQL for SQL Server. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean recoveryOnly; /** * Optional. The timestamp when the import should stop. This timestamp is in the [RFC * 3339](https://tools.ietf.org/html/rfc3339) format (for example, `2023-10-01T16:19:00.094`). * This field is equivalent to the STOPAT keyword and applies to Cloud SQL for SQL Server only. * The value may be {@code null}. */ @com.google.api.client.util.Key private String stopAt; /** * Optional. The marked transaction where the import should stop. This field is equivalent to the * STOPATMARK keyword and applies to Cloud SQL for SQL Server only. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String stopAtMark; /** * Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL * Server. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean striped; /** * Type of the bak content, FULL or DIFF * @return value or {@code null} for none */ public java.lang.String getBakType() { return bakType; } /** * Type of the bak content, FULL or DIFF * @param bakType bakType or {@code null} for none */ public BakImportOptions setBakType(java.lang.String bakType) { this.bakType = bakType; return this; } /** * @return value or {@code null} for none */ public EncryptionOptions getEncryptionOptions() { return encryptionOptions; } /** * @param encryptionOptions encryptionOptions or {@code null} for none */ public BakImportOptions setEncryptionOptions(EncryptionOptions encryptionOptions) { this.encryptionOptions = encryptionOptions; return this; } /** * Whether or not the backup importing will restore database with NORECOVERY option Applies only * to Cloud SQL for SQL Server. * @return value or {@code null} for none */ public java.lang.Boolean getNoRecovery() { return noRecovery; } /** * Whether or not the backup importing will restore database with NORECOVERY option Applies only * to Cloud SQL for SQL Server. * @param noRecovery noRecovery or {@code null} for none */ public BakImportOptions setNoRecovery(java.lang.Boolean noRecovery) { this.noRecovery = noRecovery; return this; } /** * Whether or not the backup importing request will just bring database online without downloading * Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will * return. Applies only to Cloud SQL for SQL Server. * @return value or {@code null} for none */ public java.lang.Boolean getRecoveryOnly() { return recoveryOnly; } /** * Whether or not the backup importing request will just bring database online without downloading * Bak content only one of "no_recovery" and "recovery_only" can be true otherwise error will * return. Applies only to Cloud SQL for SQL Server. * @param recoveryOnly recoveryOnly or {@code null} for none */ public BakImportOptions setRecoveryOnly(java.lang.Boolean recoveryOnly) { this.recoveryOnly = recoveryOnly; return this; } /** * Optional. The timestamp when the import should stop. This timestamp is in the [RFC * 3339](https://tools.ietf.org/html/rfc3339) format (for example, `2023-10-01T16:19:00.094`). * This field is equivalent to the STOPAT keyword and applies to Cloud SQL for SQL Server only. * @return value or {@code null} for none */ public String getStopAt() { return stopAt; } /** * Optional. The timestamp when the import should stop. This timestamp is in the [RFC * 3339](https://tools.ietf.org/html/rfc3339) format (for example, `2023-10-01T16:19:00.094`). * This field is equivalent to the STOPAT keyword and applies to Cloud SQL for SQL Server only. * @param stopAt stopAt or {@code null} for none */ public BakImportOptions setStopAt(String stopAt) { this.stopAt = stopAt; return this; } /** * Optional. The marked transaction where the import should stop. This field is equivalent to the * STOPATMARK keyword and applies to Cloud SQL for SQL Server only. * @return value or {@code null} for none */ public java.lang.String getStopAtMark() { return stopAtMark; } /** * Optional. The marked transaction where the import should stop. This field is equivalent to the * STOPATMARK keyword and applies to Cloud SQL for SQL Server only. * @param stopAtMark stopAtMark or {@code null} for none */ public BakImportOptions setStopAtMark(java.lang.String stopAtMark) { this.stopAtMark = stopAtMark; return this; } /** * Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL * Server. * @return value or {@code null} for none */ public java.lang.Boolean getStriped() { return striped; } /** * Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL * Server. * @param striped striped or {@code null} for none */ public BakImportOptions setStriped(java.lang.Boolean striped) { this.striped = striped; return this; } @Override public BakImportOptions set(String fieldName, Object value) { return (BakImportOptions) super.set(fieldName, value); } @Override public BakImportOptions clone() { return (BakImportOptions) super.clone(); } /** * Model definition for ImportContextBakImportOptionsEncryptionOptions. */ public static final class EncryptionOptions extends com.google.api.client.json.GenericJson { /** * Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The * instance must have write permissions to the bucket and read access to the file. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String certPath; /** * Password that encrypts the private key * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String pvkPassword; /** * Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form * `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read * access to the file. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String pvkPath; /** * Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The * instance must have write permissions to the bucket and read access to the file. * @return value or {@code null} for none */ public java.lang.String getCertPath() { return certPath; } /** * Path to the Certificate (.cer) in Cloud Storage, in the form `gs://bucketName/fileName`. The * instance must have write permissions to the bucket and read access to the file. * @param certPath certPath or {@code null} for none */ public EncryptionOptions setCertPath(java.lang.String certPath) { this.certPath = certPath; return this; } /** * Password that encrypts the private key * @return value or {@code null} for none */ public java.lang.String getPvkPassword() { return pvkPassword; } /** * Password that encrypts the private key * @param pvkPassword pvkPassword or {@code null} for none */ public EncryptionOptions setPvkPassword(java.lang.String pvkPassword) { this.pvkPassword = pvkPassword; return this; } /** * Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form * `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read * access to the file. * @return value or {@code null} for none */ public java.lang.String getPvkPath() { return pvkPath; } /** * Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form * `gs://bucketName/fileName`. The instance must have write permissions to the bucket and read * access to the file. * @param pvkPath pvkPath or {@code null} for none */ public EncryptionOptions setPvkPath(java.lang.String pvkPath) { this.pvkPath = pvkPath; return this; } @Override public EncryptionOptions set(String fieldName, Object value) { return (EncryptionOptions) super.set(fieldName, value); } @Override public EncryptionOptions clone() { return (EncryptionOptions) super.clone(); } } } /** * Options for importing data as CSV. */ public static final class CsvImportOptions extends com.google.api.client.json.GenericJson { /** * The columns to which CSV data is imported. If not specified, all columns of the database table * are loaded with CSV data. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.List columns; /** * Specifies the character that should appear before a data character that needs to be escaped. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String escapeCharacter; /** * Specifies the character that separates columns within each row (line) of the file. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String fieldsTerminatedBy; /** * This is used to separate lines. If a line does not contain all fields, the rest of the columns * are set to their default values. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String linesTerminatedBy; /** * Specifies the quoting character to be used when a data value is quoted. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String quoteCharacter; /** * The table to which CSV data is imported. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String table; /** * The columns to which CSV data is imported. If not specified, all columns of the database table * are loaded with CSV data. * @return value or {@code null} for none */ public java.util.List getColumns() { return columns; } /** * The columns to which CSV data is imported. If not specified, all columns of the database table * are loaded with CSV data. * @param columns columns or {@code null} for none */ public CsvImportOptions setColumns(java.util.List columns) { this.columns = columns; return this; } /** * Specifies the character that should appear before a data character that needs to be escaped. * @return value or {@code null} for none */ public java.lang.String getEscapeCharacter() { return escapeCharacter; } /** * Specifies the character that should appear before a data character that needs to be escaped. * @param escapeCharacter escapeCharacter or {@code null} for none */ public CsvImportOptions setEscapeCharacter(java.lang.String escapeCharacter) { this.escapeCharacter = escapeCharacter; return this; } /** * Specifies the character that separates columns within each row (line) of the file. * @return value or {@code null} for none */ public java.lang.String getFieldsTerminatedBy() { return fieldsTerminatedBy; } /** * Specifies the character that separates columns within each row (line) of the file. * @param fieldsTerminatedBy fieldsTerminatedBy or {@code null} for none */ public CsvImportOptions setFieldsTerminatedBy(java.lang.String fieldsTerminatedBy) { this.fieldsTerminatedBy = fieldsTerminatedBy; return this; } /** * This is used to separate lines. If a line does not contain all fields, the rest of the columns * are set to their default values. * @return value or {@code null} for none */ public java.lang.String getLinesTerminatedBy() { return linesTerminatedBy; } /** * This is used to separate lines. If a line does not contain all fields, the rest of the columns * are set to their default values. * @param linesTerminatedBy linesTerminatedBy or {@code null} for none */ public CsvImportOptions setLinesTerminatedBy(java.lang.String linesTerminatedBy) { this.linesTerminatedBy = linesTerminatedBy; return this; } /** * Specifies the quoting character to be used when a data value is quoted. * @return value or {@code null} for none */ public java.lang.String getQuoteCharacter() { return quoteCharacter; } /** * Specifies the quoting character to be used when a data value is quoted. * @param quoteCharacter quoteCharacter or {@code null} for none */ public CsvImportOptions setQuoteCharacter(java.lang.String quoteCharacter) { this.quoteCharacter = quoteCharacter; return this; } /** * The table to which CSV data is imported. * @return value or {@code null} for none */ public java.lang.String getTable() { return table; } /** * The table to which CSV data is imported. * @param table table or {@code null} for none */ public CsvImportOptions setTable(java.lang.String table) { this.table = table; return this; } @Override public CsvImportOptions set(String fieldName, Object value) { return (CsvImportOptions) super.set(fieldName, value); } @Override public CsvImportOptions clone() { return (CsvImportOptions) super.clone(); } } /** * Optional. Options for importing data from SQL statements. */ public static final class SqlImportOptions extends com.google.api.client.json.GenericJson { /** * Optional. Whether or not the import should be parallel. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean parallel; /** * Optional. Options for importing from a Cloud SQL for PostgreSQL instance. * The value may be {@code null}. */ @com.google.api.client.util.Key private PostgresImportOptions postgresImportOptions; /** * Optional. The number of threads to use for parallel import. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer threads; /** * Optional. Whether or not the import should be parallel. * @return value or {@code null} for none */ public java.lang.Boolean getParallel() { return parallel; } /** * Optional. Whether or not the import should be parallel. * @param parallel parallel or {@code null} for none */ public SqlImportOptions setParallel(java.lang.Boolean parallel) { this.parallel = parallel; return this; } /** * Optional. Options for importing from a Cloud SQL for PostgreSQL instance. * @return value or {@code null} for none */ public PostgresImportOptions getPostgresImportOptions() { return postgresImportOptions; } /** * Optional. Options for importing from a Cloud SQL for PostgreSQL instance. * @param postgresImportOptions postgresImportOptions or {@code null} for none */ public SqlImportOptions setPostgresImportOptions(PostgresImportOptions postgresImportOptions) { this.postgresImportOptions = postgresImportOptions; return this; } /** * Optional. The number of threads to use for parallel import. * @return value or {@code null} for none */ public java.lang.Integer getThreads() { return threads; } /** * Optional. The number of threads to use for parallel import. * @param threads threads or {@code null} for none */ public SqlImportOptions setThreads(java.lang.Integer threads) { this.threads = threads; return this; } @Override public SqlImportOptions set(String fieldName, Object value) { return (SqlImportOptions) super.set(fieldName, value); } @Override public SqlImportOptions clone() { return (SqlImportOptions) super.clone(); } /** * Optional. Options for importing from a Cloud SQL for PostgreSQL instance. */ public static final class PostgresImportOptions extends com.google.api.client.json.GenericJson { /** * Optional. The --clean flag for the pg_restore utility. This flag applies only if you enabled * Cloud SQL to import files in parallel. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean clean; /** * Optional. The --if-exists flag for the pg_restore utility. This flag applies only if you * enabled Cloud SQL to import files in parallel. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean ifExists; /** * Optional. The --clean flag for the pg_restore utility. This flag applies only if you enabled * Cloud SQL to import files in parallel. * @return value or {@code null} for none */ public java.lang.Boolean getClean() { return clean; } /** * Optional. The --clean flag for the pg_restore utility. This flag applies only if you enabled * Cloud SQL to import files in parallel. * @param clean clean or {@code null} for none */ public PostgresImportOptions setClean(java.lang.Boolean clean) { this.clean = clean; return this; } /** * Optional. The --if-exists flag for the pg_restore utility. This flag applies only if you * enabled Cloud SQL to import files in parallel. * @return value or {@code null} for none */ public java.lang.Boolean getIfExists() { return ifExists; } /** * Optional. The --if-exists flag for the pg_restore utility. This flag applies only if you * enabled Cloud SQL to import files in parallel. * @param ifExists ifExists or {@code null} for none */ public PostgresImportOptions setIfExists(java.lang.Boolean ifExists) { this.ifExists = ifExists; return this; } @Override public PostgresImportOptions set(String fieldName, Object value) { return (PostgresImportOptions) super.set(fieldName, value); } @Override public PostgresImportOptions clone() { return (PostgresImportOptions) super.clone(); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy