Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LustreMount

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb

Overview

Represents a mount configuration for Lustre file system.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1LustreMount

Returns a new instance of GoogleCloudAiplatformV1beta1LustreMount.



25171
25172
25173
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25171

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#filesystemString

Required. The name of the Lustre filesystem. Corresponds to the JSON property filesystem

Returns:

  • (String)


25153
25154
25155
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25153

def filesystem
  @filesystem
end

#instance_ipString

Required. IP address of the Lustre instance. Corresponds to the JSON property instanceIp

Returns:

  • (String)


25158
25159
25160
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25158

def instance_ip
  @instance_ip
end

#mount_pointString

Required. Destination mount path. The Lustre file system will be mounted for the user under /mnt/lustre/ Corresponds to the JSON property mountPoint

Returns:

  • (String)


25164
25165
25166
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25164

def mount_point
  @mount_point
end

#volume_handleString

Required. The unique identifier of the Lustre volume. Corresponds to the JSON property volumeHandle

Returns:

  • (String)


25169
25170
25171
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25169

def volume_handle
  @volume_handle
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



25176
25177
25178
25179
25180
25181
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25176

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