Class EnvironmentVariable
The environment variables for the Hosted Application
Inherited Members
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