Show / Hide Table of Contents

Class KeyValueProperty

Key Value Property to set for configuration. Please check LandingZoneSummary.packageVariables output from /landingZones API for a list of valid properties.

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

Properties

Key

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

Name of the configuration variable or property to set for the catalog item.

Remarks

Required

Value

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

The value assigned to the specified configuration property key.

Remarks

Required

In this article
Back to top