ข้ามไปยังเนื้อหา

Class DatabaseTopologyOperationalAction

เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน

Namespace: Cephalon.Abstractions.Data
Assembly: Cephalon.Abstractions.dll

Describes one engine-owned operator action for the current database-topology posture.

public sealed class DatabaseTopologyOperationalAction

objectDatabaseTopologyOperationalAction

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

DatabaseTopologyOperationalAction(string, string, string, string, string, string, string, string, IReadOnlyList<string>?, IReadOnlyList<string>?)

Section titled “ DatabaseTopologyOperationalAction(string, string, string, string, string, string, string, string, IReadOnlyList<string>?, IReadOnlyList<string>?)”

Creates a new database-topology operator action.

public DatabaseTopologyOperationalAction(string id, string category, string tone, string title, string detail, string completionSignal, string actionLabel, string actionPath, IReadOnlyList<string>? sourceRoleIds = null, IReadOnlyList<string>? sourceMigrationIds = null)

id string

The stable action identifier.

category string

The stable machine-readable remediation category.

tone string

The operator-facing tone such as Success, Warning, or Error.

title string

The human-readable action title.

detail string

The operator-facing action detail.

completionSignal string

The operator-facing signal that the action is complete.

actionLabel string

The suggested operator action label.

actionPath string

The suggested operator action path.

sourceRoleIds IReadOnlyList<string>?

Optional logical database-role identifiers that contributed to the action.

sourceMigrationIds IReadOnlyList<string>?

Optional logical migration-target identifiers that contributed to the action.

Gets the suggested operator action label.

public string ActionLabel { get; }

string

Gets the suggested operator action path.

public string ActionPath { get; }

string

Gets the stable machine-readable remediation category.

public string Category { get; }

string

Gets the operator-facing signal that the action is complete.

public string CompletionSignal { get; }

string

Gets the operator-facing action detail.

public string Detail { get; }

string

Gets the stable action identifier.

public string Id { get; }

string

Gets the logical migration-target identifiers that contributed to the action.

public IReadOnlyList<string> SourceMigrationIds { get; }

IReadOnlyList<string>

Gets the logical database-role identifiers that contributed to the action.

public IReadOnlyList<string> SourceRoleIds { get; }

IReadOnlyList<string>

Gets the human-readable action title.

public string Title { get; }

string

Gets the operator-facing action tone.

public string Tone { get; }

string