Class: Google::Apis::NetappV1::LocationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::NetappV1::LocationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/netapp_v1/classes.rb,
lib/google/apis/netapp_v1/representations.rb,
lib/google/apis/netapp_v1/representations.rb
Overview
Metadata for a given google.cloud.location.Location.
Instance Attribute Summary collapse
-
#has_ontap_proxy ⇒ Boolean
(also: #has_ontap_proxy?)
Output only.
-
#has_vcp ⇒ Boolean
(also: #has_vcp?)
Output only.
-
#supported_flex_performance ⇒ Array<String>
Output only.
-
#supported_service_levels ⇒ Array<String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LocationMetadata
constructor
A new instance of LocationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LocationMetadata
Returns a new instance of LocationMetadata.
1974 1975 1976 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 1974 def initialize(**args) update!(**args) end |
Instance Attribute Details
#has_ontap_proxy ⇒ Boolean Also known as: has_ontap_proxy?
Output only. Indicates if the location has ONTAP Proxy support.
Corresponds to the JSON property hasOntapProxy
1955 1956 1957 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 1955 def has_ontap_proxy @has_ontap_proxy end |
#has_vcp ⇒ Boolean Also known as: has_vcp?
Output only. Indicates if the location has VCP support.
Corresponds to the JSON property hasVcp
1961 1962 1963 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 1961 def has_vcp @has_vcp end |
#supported_flex_performance ⇒ Array<String>
Output only. Supported flex performance in a location.
Corresponds to the JSON property supportedFlexPerformance
1967 1968 1969 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 1967 def supported_flex_performance @supported_flex_performance end |
#supported_service_levels ⇒ Array<String>
Output only. Supported service levels in a location.
Corresponds to the JSON property supportedServiceLevels
1972 1973 1974 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 1972 def supported_service_levels @supported_service_levels end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1979 1980 1981 1982 1983 1984 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 1979 def update!(**args) @has_ontap_proxy = args[:has_ontap_proxy] if args.key?(:has_ontap_proxy) @has_vcp = args[:has_vcp] if args.key?(:has_vcp) @supported_flex_performance = args[:supported_flex_performance] if args.key?(:supported_flex_performance) @supported_service_levels = args[:supported_service_levels] if args.key?(:supported_service_levels) end |