Class: Google::Apis::ClouddeployV1::SkaffoldSupportedCondition
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::SkaffoldSupportedCondition
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb
Overview
SkaffoldSupportedCondition contains information about when support for the release's version of skaffold ends.
Instance Attribute Summary collapse
-
#maintenance_mode_time ⇒ String
The time at which this release's version of skaffold will enter maintenance mode.
-
#skaffold_support_state ⇒ String
The skaffold support state for this release's version of skaffold.
-
#status ⇒ Boolean
(also: #status?)
True if the version of skaffold used by this release is supported.
-
#support_expiration_time ⇒ String
The time at which this release's version of skaffold will no longer be supported.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SkaffoldSupportedCondition
constructor
A new instance of SkaffoldSupportedCondition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SkaffoldSupportedCondition
Returns a new instance of SkaffoldSupportedCondition.
2875 2876 2877 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2875 def initialize(**args) update!(**args) end |
Instance Attribute Details
#maintenance_mode_time ⇒ String
The time at which this release's version of skaffold will enter maintenance
mode.
Corresponds to the JSON property maintenanceModeTime
2856 2857 2858 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2856 def maintenance_mode_time @maintenance_mode_time end |
#skaffold_support_state ⇒ String
The skaffold support state for this release's version of skaffold.
Corresponds to the JSON property skaffoldSupportState
2861 2862 2863 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2861 def skaffold_support_state @skaffold_support_state end |
#status ⇒ Boolean Also known as: status?
True if the version of skaffold used by this release is supported.
Corresponds to the JSON property status
2866 2867 2868 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2866 def status @status end |
#support_expiration_time ⇒ String
The time at which this release's version of skaffold will no longer be
supported.
Corresponds to the JSON property supportExpirationTime
2873 2874 2875 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2873 def support_expiration_time @support_expiration_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2880 2881 2882 2883 2884 2885 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2880 def update!(**args) @maintenance_mode_time = args[:maintenance_mode_time] if args.key?(:maintenance_mode_time) @skaffold_support_state = args[:skaffold_support_state] if args.key?(:skaffold_support_state) @status = args[:status] if args.key?(:status) @support_expiration_time = args[:support_expiration_time] if args.key?(:support_expiration_time) end |