Show / Hide Table of Contents

Class AssetSourceCredentials

Credentials for an asset source.

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

Properties

SecretId

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

Type

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

Authentication type

Remarks

Required

In this article
Back to top