Skip to main content

Module clients.h2o_engine_version.version

Functions

from_api_object

def from_api_object(api_object: h2o_engine_manager.gen.model.v1_h2_o_engine_version.V1H2OEngineVersion) ‑> H2OEngineVersion

from_api_objects

def from_api_objects(api_objects: List[h2o_engine_manager.gen.model.v1_h2_o_engine_version.V1H2OEngineVersion]) ‑> List[H2OEngineVersion]

Classes

H2OEngineVersion

class H2OEngineVersion(image: str, name: str = '', deprecated: bool = False, aliases: Optional[List[str]] = None, image_pull_policy: h2o_engine_manager.clients.base.image_pull_policy.ImagePullPolicy = ImagePullPolicy.IMAGE_PULL_POLICY_UNSPECIFIED, image_pull_secrets: Optional[List[str]] = None, create_time: Optional[datetime.datetime] = None, update_time: Optional[datetime.datetime] = None, creator: str = '', updater: str = '', creator_display_name: str = '', updater_display_name: str = '')

H2OEngineVersion represents H2O version that can be used in H2OEngine.

H2OEngineVersion represents a set of values that are used for H2OEngine.

Args
image
Name of the Docker image used when using this H2OEngineVersion.
name
Resource name. Format "workspaces//h2oEngineVersions/".
deprecated
Indicates whether H2OEngineVersion is deprecated.
aliases
Resource ID aliases for this H2OEngineVersion. Aliases are unique within the workspace. Any alias must be in format: - contain 1-63 characters - contain only lowercase alphanumeric characters or hyphen ('-') - start with an alphabetic character - end with an alphanumeric character
image_pull_policy
Image pull policy applied when using this H2OEngineVersion. When unset, server will choose a default one.
image_pull_secrets
List of references to k8s secrets that can be used for pulling an image of this H2OEngineVersion from a private container image registry or repository.
create_time
Time when the H2OEngineVersion was created.
update_time
Time when the H2OEngineVersion was last updated.
creator
Name of entity that created the H2OEngineVersion.
updater
Name of entity that last updated the H2OEngineVersion.
creator_display_name
Human-readable name of entity that created the H2OEngineVersion.
updater_display_name
Human-readable name of entity that last updated the H2OEngineVersion.

Methods

to_api_object

def to_api_object(self) ‑> h2o_engine_manager.gen.model.v1_h2_o_engine_version.V1H2OEngineVersion

to_resource

def to_resource(self) ‑> h2o_engine_manager.gen.model.required_h2_o_engine_version_resource.RequiredH2OEngineVersionResource

Feedback