Show / Hide Table of Contents

Class RecipeSummary

The list of recipe details to create pipelines.

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

Properties

Description

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

Metadata about this specific object.

DisplayName

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

An object's Display Name.

Remarks

Required

Name

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

An object's Display Name.

Remarks

Required

RecipeType

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

The type of the recipe

Remarks

Required

SupportedSourceTechnologyTypes

Declaration
[Required(ErrorMessage = "SupportedSourceTechnologyTypes is required.")]
[JsonProperty(PropertyName = "supportedSourceTechnologyTypes")]
public List<TechnologyType> SupportedSourceTechnologyTypes { get; set; }
Property Value
Type Description
List<TechnologyType>

Array of supported technology types for this recipe.

Remarks

Required

SupportedTargetTechnologyTypes

Declaration
[Required(ErrorMessage = "SupportedTargetTechnologyTypes is required.")]
[JsonProperty(PropertyName = "supportedTargetTechnologyTypes")]
public List<TechnologyType> SupportedTargetTechnologyTypes { get; set; }
Property Value
Type Description
List<TechnologyType>

Array of supported technology types for this recipe.

Remarks

Required

In this article
Back to top