DBRP

public struct DBRP : Codable
  • id

    ID of the DBRP mapping.

    Declaration

    Swift

    public var id: String
  • ID of the organization that owns this mapping.

    Declaration

    Swift

    public var orgID: String
  • ID of the bucket used as the target for the translation.

    Declaration

    Swift

    public var bucketID: String
  • InfluxDB v1 database

    Declaration

    Swift

    public var database: String
  • InfluxDB v1 retention policy

    Declaration

    Swift

    public var retentionPolicy: String
  • Mapping represents the default retention policy for the database specified.

    Declaration

    Swift

    public var _default: Bool
  • Declaration

    Swift

    public var links: Links?
  • Declaration

    Swift

    public init(id: String, orgID: String, bucketID: String, database: String, retentionPolicy: String, _default: Bool, links: Links? = nil)
  • Declaration

    Swift

    public enum CodingKeys : String, CodingKey, CaseIterable