Environment
public struct Environment : Codable, Equatable
Details about an environment.
-
Current status of the environment.
See moreresizingis displayed when a request to increase the environment size has been made, but is still in the process of being completed.Declaration
Swift
public enum Status : String -
Current size of the environment.
See moreDeclaration
Swift
public enum Size : String -
Unique identifier for the environment.
Declaration
Swift
public var environmentID: String? -
Name that identifies the environment.
Declaration
Swift
public var name: String? -
Description of the environment.
Declaration
Swift
public var description: String? -
Creation date of the environment, in the format
yyyy-MM-dd'T'HH:mm:ss.SSS'Z'.Declaration
Swift
public var created: Date? -
Date of most recent environment update, in the format
yyyy-MM-dd'T'HH:mm:ss.SSS'Z'.Declaration
Swift
public var updated: Date? -
Current status of the environment.
resizingis displayed when a request to increase the environment size has been made, but is still in the process of being completed.Declaration
Swift
public var status: String? -
If
true, the environment contains read-only collections that are maintained by IBM.Declaration
Swift
public var readOnly: Bool? -
Current size of the environment.
Declaration
Swift
public var size: String? -
The new size requested for this environment. Only returned when the environment status is
resizing. Note: Querying and indexing can still be performed during an environment upsize.Declaration
Swift
public var requestedSize: String? -
Details about the resource usage and capacity of the environment.
Declaration
Swift
public var indexCapacity: IndexCapacity? -
Information about the Continuous Relevancy Training for this environment.
Declaration
Swift
public var searchStatus: SearchStatus?
View on GitHub
Environment Structure Reference