Class AddServiceDetails
The configuration details for adding new services to the existing Stack.
Inherited Members
Namespace: Oci.DifService.Models
Assembly: OCI.DotNetSDK.Dif.dll
Syntax
public class AddServiceDetails
Properties
Adb
Declaration
[JsonProperty(PropertyName = "adb")]
public List<AdbDetail> Adb { get; set; }
Property Value
| Type | Description |
|---|---|
| List<AdbDetail> | ADB details if adb is included in the services to be added. |
Dataflow
Declaration
[JsonProperty(PropertyName = "dataflow")]
public List<DataflowDetail> Dataflow { get; set; }
Property Value
| Type | Description |
|---|---|
| List<DataflowDetail> | DATAFLOW details if dataflow is included in the services to be added. |
Genai
Declaration
[JsonProperty(PropertyName = "genai")]
public List<GenAiDetail> Genai { get; set; }
Property Value
| Type | Description |
|---|---|
| List<GenAiDetail> | GenAI Details if genai is included in services to be added. |
Ggcs
Declaration
[JsonProperty(PropertyName = "ggcs")]
public List<GgcsDetail> Ggcs { get; set; }
Property Value
| Type | Description |
|---|---|
| List<GgcsDetail> | GGCS details if ggcs is included in the services to be added. |
Objectstorage
Declaration
[JsonProperty(PropertyName = "objectstorage")]
public List<ObjectStorageDetail> Objectstorage { get; set; }
Property Value
| Type | Description |
|---|---|
| List<ObjectStorageDetail> | Object Storage Details if object storage is included in services to be added. |
Services
Declaration
[Required(ErrorMessage = "Services is required.")]
[JsonProperty(PropertyName = "services", ItemConverterType = typeof(StringEnumConverter))]
public List<Service> Services { get; set; }
Property Value
| Type | Description |
|---|---|
| List<Service> | List of services to be added for the stack. |
Remarks
Required
StackTemplates
Declaration
[Required(ErrorMessage = "StackTemplates is required.")]
[JsonProperty(PropertyName = "stackTemplates", ItemConverterType = typeof(StringEnumConverter))]
public List<StackTemplate> StackTemplates { get; set; }
Property Value
| Type | Description |
|---|---|
| List<StackTemplate> | List of templates to be added for the stack. |
Remarks
Required