Show / Hide Table of Contents

Class UpdateExportSettingDetails

Attributes to update an export setting.

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

Properties

ExportDuration

Declaration
[JsonProperty(PropertyName = "exportDuration")]
[JsonConverter(typeof(StringEnumConverter))]
public ExportDuration? ExportDuration { get; set; }
Property Value
Type Description
ExportDuration?

The duration of data to be exported for fleets.

ExportFrequency

Declaration
[JsonProperty(PropertyName = "exportFrequency")]
[JsonConverter(typeof(StringEnumConverter))]
public ExportFrequency? ExportFrequency { get; set; }
Property Value
Type Description
ExportFrequency?

Schedule at which data will be exported.

ExportResources

Declaration
[JsonProperty(PropertyName = "exportResources")]
[JsonConverter(typeof(StringEnumConverter))]
public ExportResources? ExportResources { get; set; }
Property Value
Type Description
ExportResources?

Resource to export data associated from the fleets.

IsCrossRegionAcknowledged

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

Acknowledgement for cross region target bucket configuration.

IsEnabled

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

ExportSetting flag to store enabled or disabled status.

Remarks

Required

TargetBucketName

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

The name of the bucket where data will be exported.

TargetBucketNamespace

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

The namespace of the bucket where data will be exported.

TargetBucketRegion

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

The id of the region of the target bucket.

In this article
Back to top