Class: Google::Apis::VmwareengineV1::GoogleFileService
- Inherits:
-
Object
- Object
- Google::Apis::VmwareengineV1::GoogleFileService
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vmwareengine_v1/classes.rb,
lib/google/apis/vmwareengine_v1/representations.rb,
lib/google/apis/vmwareengine_v1/representations.rb
Overview
Google service file service configuration
Instance Attribute Summary collapse
-
#filestore_instance ⇒ String
Google filestore instance resource name e.g.
-
#netapp_volume ⇒ String
Google netapp volume resource name e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFileService
constructor
A new instance of GoogleFileService.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFileService
Returns a new instance of GoogleFileService.
1183 1184 1185 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1183 def initialize(**args) update!(**args) end |
Instance Attribute Details
#filestore_instance ⇒ String
Google filestore instance resource name e.g. projects/my-project/locations/me-
west1-b/instances/my-instance
Corresponds to the JSON property filestoreInstance
1175 1176 1177 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1175 def filestore_instance @filestore_instance end |
#netapp_volume ⇒ String
Google netapp volume resource name e.g. projects/my-project/locations/me-west1-
b/volumes/my-volume
Corresponds to the JSON property netappVolume
1181 1182 1183 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1181 def netapp_volume @netapp_volume end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1188 1189 1190 1191 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1188 def update!(**args) @filestore_instance = args[:filestore_instance] if args.key?(:filestore_instance) @netapp_volume = args[:netapp_volume] if args.key?(:netapp_volume) end |