Interface IMigrationCapabilities
Represents the readonly capabilities of a migration.
Namespace: Tableau.Migration
Assembly: Tableau.Migration.dll
Syntax
public interface IMigrationCapabilities : ICloneable
Properties
ContentTypesDisabledAtDestination
Gets the unique list of items that are disabled at the destination.
Declaration
HashSet<Type> ContentTypesDisabledAtDestination { get; }
Property Value
Type | Description |
---|---|
HashSet<Type> |
EmbeddedCredentialsDisabled
Gets whether Embedded Credential migration is disabled.
Declaration
bool EmbeddedCredentialsDisabled { get; }
Property Value
Type | Description |
---|---|
bool |
PreflightCheckExecuted
Gets a value indicating whether the preflight check has been executed.
Declaration
bool PreflightCheckExecuted { get; }
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. |