Show / Hide Table of Contents

Class GdpPipelineSummary

Retrieves summary pipeline configuration information by identifier.

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

Properties

AuthorizationDetails

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

Free-text field containing tracking information for approval tracking.

CompartmentId

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

The OCID of the compartment.

Remarks

Required

DefinedTags

Declaration
[Required(ErrorMessage = "DefinedTags is required.")]
[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. Example: {"foo-namespace": {"bar-key": "value"}}

Remarks

Required

Description

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

Short field input by customer for a description of the data pipeline use-case.

DisplayName

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

Pipeline short name.

Remarks

Required

FreeformTags

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

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Remarks

Required

Id

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

The OCID of the pipeline.

Remarks

Required

IsApprovalNeeded

Declaration
[JsonProperty(PropertyName = "isApprovalNeeded")]
public bool? IsApprovalNeeded { get; set; }
Property Value
Type Description
bool?

Determines whether file transfers need to go through an approval workflow.

IsChunkingEnabled

Declaration
[JsonProperty(PropertyName = "isChunkingEnabled")]
public bool? IsChunkingEnabled { get; set; }
Property Value
Type Description
bool?

Determines whether file must be chunked during the transfer. This is only a property of SENDER pipelines.

IsFileOverrideInDestinationEnabled

Declaration
[JsonProperty(PropertyName = "isFileOverrideInDestinationEnabled")]
public bool? IsFileOverrideInDestinationEnabled { get; set; }
Property Value
Type Description
bool?

Enable file override feature in destination bucket

IsScanningEnabled

Declaration
[JsonProperty(PropertyName = "isScanningEnabled")]
public bool? IsScanningEnabled { get; set; }
Property Value
Type Description
bool?

Determines whether GDP Scanning should be enabled for the pipeline.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(StringEnumConverter))]
public GdpPipeline.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
GdpPipeline.LifecycleStateEnum?

The current state of the pipeline.

Remarks

Required

PeeringRegion

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

Public region name where the peered pipeline exists.

Remarks

Required

PipelineType

Declaration
[Required(ErrorMessage = "PipelineType is required.")]
[JsonProperty(PropertyName = "pipelineType")]
[JsonConverter(typeof(StringEnumConverter))]
public GdpPipeline.PipelineTypeEnum? PipelineType { get; set; }
Property Value
Type Description
GdpPipeline.PipelineTypeEnum?

Type of pipeline. Can be SENDER or RECEIVER.

Remarks

Required

ServiceLogGroupId

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

the OCID of the service log group.

SystemTags

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

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time the pipeline was created. An RFC3339 formatted datetime string.

Remarks

Required

TimeUpdated

Declaration
[Required(ErrorMessage = "TimeUpdated is required.")]
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The time the pipeline was updated. An RFC3339 formatted datetime string.

Remarks

Required

In this article
Back to top