Class: Google::Apis::ComputeBeta::PreviewFeatureStatus
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::PreviewFeatureStatus
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
[Output Only] The status of the feature.
Instance Attribute Summary collapse
-
#description ⇒ String
Output only.
-
#help_link ⇒ String
Output only.
-
#release_status ⇒ Google::Apis::ComputeBeta::PreviewFeatureStatusReleaseStatus
[Output Only] The release status of the feature.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PreviewFeatureStatus
constructor
A new instance of PreviewFeatureStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PreviewFeatureStatus
Returns a new instance of PreviewFeatureStatus.
43967 43968 43969 |
# File 'lib/google/apis/compute_beta/classes.rb', line 43967 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Output only. [Output Only] The description of the feature.
Corresponds to the JSON property description
43955 43956 43957 |
# File 'lib/google/apis/compute_beta/classes.rb', line 43955 def description @description end |
#help_link ⇒ String
Output only. [Output Only] Link to the public documentation for the feature.
Corresponds to the JSON property helpLink
43960 43961 43962 |
# File 'lib/google/apis/compute_beta/classes.rb', line 43960 def help_link @help_link end |
#release_status ⇒ Google::Apis::ComputeBeta::PreviewFeatureStatusReleaseStatus
[Output Only] The release status of the feature.
Corresponds to the JSON property releaseStatus
43965 43966 43967 |
# File 'lib/google/apis/compute_beta/classes.rb', line 43965 def release_status @release_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
43972 43973 43974 43975 43976 |
# File 'lib/google/apis/compute_beta/classes.rb', line 43972 def update!(**args) @description = args[:description] if args.key?(:description) @help_link = args[:help_link] if args.key?(:help_link) @release_status = args[:release_status] if args.key?(:release_status) end |