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

com.pulumi.googlenative.healthcare.v1beta1.enums.GoogleCloudHealthcareV1beta1DicomBigQueryDestinationWriteDisposition 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.googlenative.healthcare.v1beta1.enums;

import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;

    /**
     * Determines whether the existing table in the destination is to be overwritten or appended to. If a write_disposition is specified, the `force` parameter is ignored.
     * 
     */
    @EnumType
    public enum GoogleCloudHealthcareV1beta1DicomBigQueryDestinationWriteDisposition {
        /**
         * Default behavior is the same as WRITE_EMPTY.
         * 
         */
        WriteDispositionUnspecified("WRITE_DISPOSITION_UNSPECIFIED"),
        /**
         * Only export data if the destination table is empty.
         * 
         */
        WriteEmpty("WRITE_EMPTY"),
        /**
         * Erase all existing data in the destination table before writing the instances.
         * 
         */
        WriteTruncate("WRITE_TRUNCATE"),
        /**
         * Append data to the destination table.
         * 
         */
        WriteAppend("WRITE_APPEND");

        private final String value;

        GoogleCloudHealthcareV1beta1DicomBigQueryDestinationWriteDisposition(String value) {
            this.value = Objects.requireNonNull(value);
        }

        @EnumType.Converter
        public String getValue() {
            return this.value;
        }

        @Override
        public String toString() {
            return new StringJoiner(", ", "GoogleCloudHealthcareV1beta1DicomBigQueryDestinationWriteDisposition[", "]")
                .add("value='" + this.value + "'")
                .toString();
        }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy