Class KeyValueProperty
Key Value Property to set for configuration. Please check LandingZoneSummary.packageVariables output from /landingZones API for a list of valid properties.
Inherited Members
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