Skip to main content

BlueprintUpdateOptions

Namespace: Meshmakers.Octo.Runtime.Contracts.Blueprints

Options for blueprint update

public class BlueprintUpdateOptions

Inheritance ObjectBlueprintUpdateOptions

Properties

DryRun

If true, only simulate the update without making changes

public bool DryRun { get; set; }

Property Value

Boolean

CreateBackup

If true, create a backup before applying changes

public bool CreateBackup { get; set; }

Property Value

Boolean

ConflictResolutions

Manual conflict resolutions (entity ID -> resolution)

public Dictionary<string, ConflictResolution> ConflictResolutions { get; set; }

Property Value

Dictionary<String, ConflictResolution>

ContinueOnError

If true, continue on non-fatal errors

public bool ContinueOnError { get; set; }

Property Value

Boolean

Constructors

BlueprintUpdateOptions()

public BlueprintUpdateOptions()