Class: Google::Apis::ContainerV1::KubeletCertInfo

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/representations.rb

Overview

Contains expiry information about the kubelet certificate.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ KubeletCertInfo

Returns a new instance of KubeletCertInfo.



5077
5078
5079
# File 'lib/google/apis/container_v1/classes.rb', line 5077

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

Instance Attribute Details

#non_tpm_bootstrap_cert_expire_timeString

Output only. Corresponds to the JSON property nonTpmBootstrapCertExpireTime

Returns:

  • (String)


5070
5071
5072
# File 'lib/google/apis/container_v1/classes.rb', line 5070

def non_tpm_bootstrap_cert_expire_time
  @non_tpm_bootstrap_cert_expire_time
end

#tpm_bootstrap_cert_expire_timeString

Output only. Corresponds to the JSON property tpmBootstrapCertExpireTime

Returns:

  • (String)


5075
5076
5077
# File 'lib/google/apis/container_v1/classes.rb', line 5075

def tpm_bootstrap_cert_expire_time
  @tpm_bootstrap_cert_expire_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5082
5083
5084
5085
# File 'lib/google/apis/container_v1/classes.rb', line 5082

def update!(**args)
  @non_tpm_bootstrap_cert_expire_time = args[:non_tpm_bootstrap_cert_expire_time] if args.key?(:non_tpm_bootstrap_cert_expire_time)
  @tpm_bootstrap_cert_expire_time = args[:tpm_bootstrap_cert_expire_time] if args.key?(:tpm_bootstrap_cert_expire_time)
end