Show / Hide Table of Contents

Class EnvironmentVariable

The environment variables for the Hosted Application

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

Properties

Name

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

Name of the environment variable.

Remarks

Required

Type

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

Type of the environment variable (PLAINTEXT or HASHED, no default value).

Remarks

Required

Value

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

Value of the environment variable.

Remarks

Required

In this article
Back to top