Class: Google::Apis::ContainerV1::KubeletCertInfo
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::KubeletCertInfo
- 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
-
#non_tpm_bootstrap_cert_expire_time ⇒ String
Output only.
-
#tpm_bootstrap_cert_expire_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ KubeletCertInfo
constructor
A new instance of KubeletCertInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_time ⇒ String
Output only.
Corresponds to the JSON property nonTpmBootstrapCertExpireTime
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_time ⇒ String
Output only.
Corresponds to the JSON property tpmBootstrapCertExpireTime
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 |