interface ImportTerminologyRequest {
    Description?: string;
    EncryptionKey?: EncryptionKey;
    MergeStrategy: undefined | "OVERWRITE";
    Name: undefined | string;
    Tags?: Tag[];
    TerminologyData: undefined | TerminologyData;
}

Hierarchy (view full)

Properties

Description?: string

The description of the custom terminology being imported.

EncryptionKey?: EncryptionKey

The encryption key for the custom terminology being imported.

MergeStrategy: undefined | "OVERWRITE"

The merge strategy of the custom terminology being imported. Currently, only the OVERWRITE merge strategy is supported. In this case, the imported terminology will overwrite an existing terminology of the same name.

Name: undefined | string

The name of the custom terminology being imported.

Tags?: Tag[]

Tags to be associated with this resource. A tag is a key-value pair that adds metadata to a resource. Each tag key for the resource must be unique. For more information, see Tagging your resources.

TerminologyData: undefined | TerminologyData

The terminology data for the custom terminology being imported.