Show / Hide Table of Contents

Class GenerateLoadPipelineScriptDetails

Attributes to generate load pipeline script.

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

Properties

IntervalMinutes

Declaration
[JsonProperty(PropertyName = "intervalMinutes")]
public int? IntervalMinutes { get; set; }
Property Value
Type Description
int?

The time internal in minutes between consecutive executions of scheduled pipeline job.

TargetBucketName

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

The name of the bucket where data will be exported.

Remarks

Required

TargetBucketNamespace

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

The namespace of the bucket where data will be exported.

Remarks

Required

TargetBucketRegion

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

The id of the region of the target bucket.

Remarks

Required

In this article
Back to top