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.
1153 1154 1155 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1153 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
1145 1146 1147 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1145 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
1151 1152 1153 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1151 def netapp_volume @netapp_volume end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1158 1159 1160 1161 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1158 def update!(**args) @filestore_instance = args[:filestore_instance] if args.key?(:filestore_instance) @netapp_volume = args[:netapp_volume] if args.key?(:netapp_volume) end |