ScraperTargetResponse
public struct ScraperTargetResponse : Codable
-
Declaration
Swift
public enum ModelType : String, Codable, CaseIterable -
The name of the scraper target.
Declaration
Swift
public var name: String? -
The type of the metrics to be parsed.
Declaration
Swift
public var type: ModelType? -
The URL of the metrics endpoint.
Declaration
Swift
public var url: String? -
The organization ID.
Declaration
Swift
public var orgID: String? -
The ID of the bucket to write to.
Declaration
Swift
public var bucketID: String? -
Skip TLS verification on endpoint.
Declaration
Swift
public var allowInsecure: Bool? -
Declaration
Swift
public var id: String? -
The name of the organization.
Declaration
Swift
public var org: String? -
The bucket name.
Declaration
Swift
public var bucket: String? -
Declaration
Swift
public var links: ScraperTargetResponseAllOfLinks? -
Declaration
Swift
public init(name: String? = nil, type: ModelType? = nil, url: String? = nil, orgID: String? = nil, bucketID: String? = nil, allowInsecure: Bool? = false, id: String? = nil, org: String? = nil, bucket: String? = nil, links: ScraperTargetResponseAllOfLinks? = nil)
View on GitHub
ScraperTargetResponse Structure Reference