Show / Hide Table of Contents

Class NamedCredentialProperty

Property item in name/value pair

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

Properties

Name

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

Name of the property

Remarks

Required

Value

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

Value of the property

Remarks

Required

ValueCategory

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

The category of the Named credential property value. CLEAR_TEXT indicates the value field contains a clear text value. SECRET_IDENTIFIER indicates the value field contains a vault secret ocid identifier. ADB_IDENTIFIER indicates the value field contains an Autonomous database ocid identifier. ALLOWED_VALUE indicates the value should be selected from the options in the allowedValues field.

Remarks

Required

In this article
Back to top