Show / Hide Table of Contents

Class CustomClientAppDetails

Client App Credentials to be provided again.

Inheritance
object
ClientAppDetails
CustomClientAppDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApigatewayService.Models
Assembly: OCI.DotNetSDK.Apigateway.dll
Syntax
public class CustomClientAppDetails : ClientAppDetails

Properties

ClientId

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

Client ID for the OAuth2/OIDC app.

Remarks

Required

ClientSecretId

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

The OCID of the Oracle Vault Service secret resource.

Remarks

Required

ClientSecretVersionNumber

Declaration
[Required(ErrorMessage = "ClientSecretVersionNumber is required.")]
[JsonProperty(PropertyName = "clientSecretVersionNumber")]
public long? ClientSecretVersionNumber { get; set; }
Property Value
Type Description
long?

The version number of the client secret to use.

Remarks

Required

In this article
Back to top