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

com.pulumi.googlenative.migrationcenter.v1alpha1.enums.InlinePayloadInfoFormat 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.migrationcenter.v1alpha1.enums;

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

    /**
     * The import job format.
     * 
     */
    @EnumType
    public enum InlinePayloadInfoFormat {
        /**
         * Default value.
         * 
         */
        ImportJobFormatUnspecified("IMPORT_JOB_FORMAT_UNSPECIFIED"),
        /**
         * Configuration management DB format.
         * 
         */
        ImportJobFormatCmdb("IMPORT_JOB_FORMAT_CMDB"),
        /**
         * RVTools format (XLSX).
         * 
         */
        ImportJobFormatRvtoolsXlsx("IMPORT_JOB_FORMAT_RVTOOLS_XLSX"),
        /**
         * RVTools format (CSV).
         * 
         */
        ImportJobFormatRvtoolsCsv("IMPORT_JOB_FORMAT_RVTOOLS_CSV"),
        /**
         * CSV format exported from AWS using the AWS collection script.
         * 
         */
        ImportJobFormatExportedAwsCsv("IMPORT_JOB_FORMAT_EXPORTED_AWS_CSV"),
        /**
         * CSV format exported from Azure using the Azure collection script.
         * 
         */
        ImportJobFormatExportedAzureCsv("IMPORT_JOB_FORMAT_EXPORTED_AZURE_CSV"),
        /**
         * CSV format created manually. For more information, see Manually create and upload data tables.
         * 
         */
        ImportJobFormatManualCsv("IMPORT_JOB_FORMAT_MANUAL_CSV");

        private final String value;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy