Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1LustreMount
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1LustreMount
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Represents a mount configuration for Lustre file system.
Instance Attribute Summary collapse
-
#filesystem ⇒ String
Required.
-
#instance_ip ⇒ String
Required.
-
#mount_point ⇒ String
Required.
-
#volume_handle ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1LustreMount
constructor
A new instance of GoogleCloudAiplatformV1LustreMount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1LustreMount
Returns a new instance of GoogleCloudAiplatformV1LustreMount.
19998 19999 20000 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19998 def initialize(**args) update!(**args) end |
Instance Attribute Details
#filesystem ⇒ String
Required. The name of the Lustre filesystem.
Corresponds to the JSON property filesystem
19980 19981 19982 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19980 def filesystem @filesystem end |
#instance_ip ⇒ String
Required. IP address of the Lustre instance.
Corresponds to the JSON property instanceIp
19985 19986 19987 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19985 def instance_ip @instance_ip end |
#mount_point ⇒ String
Required. Destination mount path. The Lustre file system will be mounted for
the user under /mnt/lustre/
Corresponds to the JSON property mountPoint
19991 19992 19993 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19991 def mount_point @mount_point end |
#volume_handle ⇒ String
Required. The unique identifier of the Lustre volume.
Corresponds to the JSON property volumeHandle
19996 19997 19998 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19996 def volume_handle @volume_handle end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
20003 20004 20005 20006 20007 20008 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20003 def update!(**args) @filesystem = args[:filesystem] if args.key?(:filesystem) @instance_ip = args[:instance_ip] if args.key?(:instance_ip) @mount_point = args[:mount_point] if args.key?(:mount_point) @volume_handle = args[:volume_handle] if args.key?(:volume_handle) end |