Class RefreshSecretsResponse
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
SuccessboolWhether refresh succeeded.
DetectedSecretsIReadOnlyList<string>Required secrets detected from build.csando.
DetectedProfilesIReadOnlyList<string>Available profiles detected from build.csando.
Properties
DetectedProfiles
Available profiles detected from build.csando.
public IReadOnlyList<string> DetectedProfiles { get; init; }
Property Value
DetectedSecrets
Required secrets detected from build.csando.
public IReadOnlyList<string> DetectedSecrets { get; init; }
Property Value
Success
Whether refresh succeeded.
public bool Success { get; init; }