Class RecipeSummary
The list of recipe details to create pipelines.
Inherited Members
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