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

com.atlan.samples.loaders.ImportAllDataAssets Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright 2023 Atlan Pte. Ltd. */
package com.atlan.samples.loaders;

import com.atlan.model.assets.Asset;
import com.atlan.model.fields.AtlanField;
import java.util.List;

public class ImportAllDataAssets extends AssetLoader {

    /** {@inheritDoc} */
    @Override
    public List getAttributesToOverwrite() {
        return List.of(Asset.CERTIFICATE_STATUS);
    }

    public static void main(String[] args) {
        ImportAllDataAssets iada = new ImportAllDataAssets();
        iada.handleRequest(prepEvent(), null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy