Table of Contents

Class RefreshSecretsResponse

Namespace
Ando.Server.Contracts.Projects
Assembly
Ando.Server.dll

Response from refreshing required secrets detection.

public record RefreshSecretsResponse : IEquatable<RefreshSecretsResponse>
Inheritance
RefreshSecretsResponse
Implements
Inherited Members

Constructors

RefreshSecretsResponse(bool, IReadOnlyList<string>, IReadOnlyList<string>)

Response from refreshing required secrets detection.

public RefreshSecretsResponse(bool Success, IReadOnlyList<string> DetectedSecrets, IReadOnlyList<string> DetectedProfiles)

Parameters

Success bool

Whether refresh succeeded.

DetectedSecrets IReadOnlyList<string>

Required secrets detected from build.csando.

DetectedProfiles IReadOnlyList<string>

Available profiles detected from build.csando.

Properties

DetectedProfiles

Available profiles detected from build.csando.

public IReadOnlyList<string> DetectedProfiles { get; init; }

Property Value

IReadOnlyList<string>

DetectedSecrets

Required secrets detected from build.csando.

public IReadOnlyList<string> DetectedSecrets { get; init; }

Property Value

IReadOnlyList<string>

Success

Whether refresh succeeded.

public bool Success { get; init; }

Property Value

bool