DBRPCreate
public struct DBRPCreate : Codable
-
ID of the organization that owns this mapping.
Declaration
Swift
public var orgID: String?
-
Name of the organization that owns this mapping.
Declaration
Swift
public var org: 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 init(orgID: String? = nil, org: String? = nil, bucketID: String, database: String, retentionPolicy: String, _default: Bool? = nil)
-
Declaration
Swift
public enum CodingKeys : String, CodingKey, CaseIterable