Show / Hide Table of Contents

Class VaultMtlsUpdateResponse

The response of the update mTLS vault api call.

Inheritance
object
VaultMtlsUpdateResponse
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.KeymanagementService.Models
Assembly: OCI.DotNetSDK.Keymanagement.dll
Syntax
public class VaultMtlsUpdateResponse

Properties

FleetId

Declaration
[Required(ErrorMessage = "FleetId is required.")]
[JsonProperty(PropertyName = "fleetId")]
public string FleetId { get; set; }
Property Value
Type Description
string

Identifier of the fleet associated with the mTLS connection.

Remarks

Required

MtlsCryptoDns

Declaration
[Required(ErrorMessage = "MtlsCryptoDns is required.")]
[JsonProperty(PropertyName = "mtlsCryptoDns")]
public string MtlsCryptoDns { get; set; }
Property Value
Type Description
string

The mTLS DNS endpoint for performing crypto operations.

Remarks

Required

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public VaultMtlsUpdateResponse.StatusEnum? Status { get; set; }
Property Value
Type Description
VaultMtlsUpdateResponse.StatusEnum?

The mtls vault registering state.

Remarks

Required

In this article
Back to top