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

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

    /**
     * Set `Action` for [`StudyInstanceUID`, `SeriesInstanceUID`, `SOPInstanceUID`, and `MediaStorageSOPInstanceUID`](http://dicom.nema.org/medical/dicom/2018e/output/chtml/part06/chapter_6.html).
     * 
     */
    @EnumType
    public enum OptionsPrimaryIds {
        /**
         * No value provided. Default to the behavior specified by the base profile.
         * 
         */
        PrimaryIdsOptionUnspecified("PRIMARY_IDS_OPTION_UNSPECIFIED"),
        /**
         * Keep primary IDs.
         * 
         */
        Keep("KEEP"),
        /**
         * Regenerate primary IDs.
         * 
         */
        Regen("REGEN");

        private final String value;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy