Show / Hide Table of Contents

Class ExportSetting

Export settings of a fleet.

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

Properties

ExportDuration

Declaration
[JsonProperty(PropertyName = "exportDuration")]
[JsonConverter(typeof(ResponseEnumConverter))]
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(ResponseEnumConverter))]
public ExportFrequency? ExportFrequency { get; set; }
Property Value
Type Description
ExportFrequency?

Schedule at which data will be exported.

ExportResources

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

Resource to export data associated from the fleets.

ExportSettingKey

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

The internal identifier of the export setting.

FleetId

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

The OCID of the fleet.

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.

TimeCreated

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

The creation date and time of the export setting (formatted according to RFC3339).

TimeLastModified

Declaration
[JsonProperty(PropertyName = "timeLastModified")]
public DateTime? TimeLastModified { get; set; }
Property Value
Type Description
DateTime?

The update date and time of the export setting (formatted according to RFC3339).

In this article
Back to top