Show / Hide Table of Contents

Class CreateGdpPipelineDetails

The information about the new pipeline.

Inheritance
object
CreateGdpPipelineDetails
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 CreateGdpPipelineDetails

Properties

ApprovalKeyVaultId

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

The KMS vault OCID for the key to be used for file transfer approvals.

AuthorizationDetails

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

Authorization information about the pipeline being configured.

BucketDetails

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

Information about the bucket in the pipeline being configured.

Remarks

Required

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
[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"}}

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

FileTypes

Declaration
[JsonProperty(PropertyName = "fileTypes")]
public List<string> FileTypes { get; set; }
Property Value
Type Description
List<string>

List of file types allowed to be transferred in the pipeline according to the authorization details (e.g. .pdf, .xml, .doc).

FreeformTags

Declaration
[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"}

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.

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.

In this article
Back to top