Interface IMigrationCapabilitiesEditor
Represents the capabilities of a migration.
Namespace: Tableau.Migration
Assembly: Tableau.Migration.dll
Syntax
public interface IMigrationCapabilitiesEditor : IMigrationCapabilities, ICloneable
Properties
ContentTypesDisabledAtDestination
Gets or sets the unique list of items that are disabled at the destination.
Declaration
HashSet<Type> ContentTypesDisabledAtDestination { get; set; }
Property Value
Type | Description |
---|---|
HashSet<Type> |
EmbeddedCredentialsDisabled
Gets or sets whether Embedded Credential migration is disabled.
Declaration
bool EmbeddedCredentialsDisabled { get; set; }
Property Value
Type | Description |
---|---|
bool |
PreflightCheckExecuted
Gets or sets a value indicating whether the preflight check has been executed.
Declaration
bool PreflightCheckExecuted { get; set; }
Property Value
Type | Description |
---|---|
bool |
Methods
Clone()
Creates a new instance of IMigrationCapabilities that is a copy of the current instance.
Declaration
IMigrationCapabilities Clone()
Returns
Type | Description |
---|---|
IMigrationCapabilities | A new IMigrationCapabilities object that is a copy of this instance. |