Show / Hide Table of Contents

Class UpdateStackDetails

Details to update a Stack.

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

Properties

Adb

Declaration
[JsonProperty(PropertyName = "adb")]
public List<AdbUpdateDetail> Adb { get; set; }
Property Value
Type Description
List<AdbUpdateDetail>

ADB details if adb is included in the services to be updated.

Dataflow

Declaration
[JsonProperty(PropertyName = "dataflow")]
public List<DataflowUpdateDetail> Dataflow { get; set; }
Property Value
Type Description
List<DataflowUpdateDetail>

DATAFLOW details if dataflow is included in the services to be updated.

DefinedTags

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

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

FreeformTags

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

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

Genai

Declaration
[JsonProperty(PropertyName = "genai")]
public List<GenAiUpdateDetail> Genai { get; set; }
Property Value
Type Description
List<GenAiUpdateDetail>

GenAI Details if genai is included in services to be updated.

Ggcs

Declaration
[JsonProperty(PropertyName = "ggcs")]
public List<GgcsUpdateDetail> Ggcs { get; set; }
Property Value
Type Description
List<GgcsUpdateDetail>

GGCS details if ggcs is included in the services to be updated.

NotificationEmail

Declaration
[JsonProperty(PropertyName = "notificationEmail")]
public string NotificationEmail { get; set; }
Property Value
Type Description
string

email id to which the stack notifications would be sent.

Objectstorage

Declaration
[JsonProperty(PropertyName = "objectstorage")]
public List<ObjectStorageUpdateDetail> Objectstorage { get; set; }
Property Value
Type Description
List<ObjectStorageUpdateDetail>

Object Storage Details if object storage is included in services to be updated.

Services

Declaration
[JsonProperty(PropertyName = "services", ItemConverterType = typeof(StringEnumConverter))]
public List<Service> Services { get; set; }
Property Value
Type Description
List<Service>

List of services to be updated for the stack.

StackTemplates

Declaration
[JsonProperty(PropertyName = "stackTemplates", ItemConverterType = typeof(StringEnumConverter))]
public List<StackTemplate> StackTemplates { get; set; }
Property Value
Type Description
List<StackTemplate>

List of templates to be updated for the stack.

In this article
Back to top