Class: Google::Apis::ComputeAlpha::PreviewFeatureStatus
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::PreviewFeatureStatus
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
[Output Only] The status of the feature.
Instance Attribute Summary collapse
-
#description ⇒ String
[Output Only] The description of the feature.
-
#help_link ⇒ String
[Output Only] Link to the public documentation for the feature.
-
#release_status ⇒ Google::Apis::ComputeAlpha::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.
44947 44948 44949 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 44947 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
[Output Only] The description of the feature.
Corresponds to the JSON property description
44935 44936 44937 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 44935 def description @description end |
#help_link ⇒ String
[Output Only] Link to the public documentation for the feature.
Corresponds to the JSON property helpLink
44940 44941 44942 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 44940 def help_link @help_link end |
#release_status ⇒ Google::Apis::ComputeAlpha::PreviewFeatureStatusReleaseStatus
[Output Only] The release status of the feature.
Corresponds to the JSON property releaseStatus
44945 44946 44947 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 44945 def release_status @release_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
44952 44953 44954 44955 44956 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 44952 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 |