Class: Google::Apis::ClouddeployV1::SkaffoldSupportedCondition

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SkaffoldSupportedCondition

Returns a new instance of SkaffoldSupportedCondition.



2925
2926
2927
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2925

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#maintenance_mode_timeString

The time at which this release's version of skaffold will enter maintenance mode. Corresponds to the JSON property maintenanceModeTime

Returns:

  • (String)


2906
2907
2908
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2906

def maintenance_mode_time
  @maintenance_mode_time
end

#skaffold_support_stateString

The skaffold support state for this release's version of skaffold. Corresponds to the JSON property skaffoldSupportState

Returns:

  • (String)


2911
2912
2913
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2911

def skaffold_support_state
  @skaffold_support_state
end

#statusBoolean Also known as: status?

True if the version of skaffold used by this release is supported. Corresponds to the JSON property status

Returns:

  • (Boolean)


2916
2917
2918
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2916

def status
  @status
end

#support_expiration_timeString

The time at which this release's version of skaffold will no longer be supported. Corresponds to the JSON property supportExpirationTime

Returns:

  • (String)


2923
2924
2925
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2923

def support_expiration_time
  @support_expiration_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2930
2931
2932
2933
2934
2935
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2930

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