Show / Hide Table of Contents

Class UpdateDefaultModelDeploymentEnvironmentConfigurationDetails

The update environment configuration details object for managed container

Inheritance
object
UpdateModelDeploymentEnvironmentConfigurationDetails
UpdateDefaultModelDeploymentEnvironmentConfigurationDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class UpdateDefaultModelDeploymentEnvironmentConfigurationDetails : UpdateModelDeploymentEnvironmentConfigurationDetails

Properties

EnvironmentVariables

Declaration
[JsonProperty(PropertyName = "environmentVariables")]
public Dictionary<string, string> EnvironmentVariables { get; set; }
Property Value
Type Description
Dictionary<string, string>

Environment variables to set for the web server container. The size of envVars must be less than 2048 bytes. Key should be under 32 characters. Key should contain only letters, digits and underscore (_) Key should start with a letter. Key should have at least 2 characters. Key should not end with underscore eg. TEST_ Key if added cannot be empty. Value can be empty. No specific size limits on individual Values. But overall environment variables is limited to 2048 bytes. Key can't be reserved Model Deployment environment variables.

In this article
Back to top