Show / Hide Table of Contents

Class CspZoneKeyReferenceId

This is CSP zone key reference

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

Properties

KeyName

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

KeyName for Azure=AzureSubscriptionId Aws=AwsAccountId GCP=GcpProjectName

Remarks

Required

KeyValue

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

Value of keyName GcpProjectName: A human-readable name for your project. The project name isn't used by any Google APIs. You can edit the project name at any time during or after project creation. Project names do not need to be unique. AzureSubscriptionId: A unique alphanumeric string that identifies your Azure subscription. AwsAccountId: a unique 12-digit number that identifies an Amazon Web Services (AWS) account

Remarks

Required

In this article
Back to top