Class: Google::Apis::CloudiotV1::PublicKeyCredential
- Inherits:
-
Object
- Object
- Google::Apis::CloudiotV1::PublicKeyCredential
- Defined in:
- generated/google/apis/cloudiot_v1/classes.rb,
generated/google/apis/cloudiot_v1/representations.rb,
generated/google/apis/cloudiot_v1/representations.rb
Overview
A public key format and data.
Instance Attribute Summary collapse
-
#format ⇒ String
The format of the key.
-
#key ⇒ String
The key data.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PublicKeyCredential
constructor
A new instance of PublicKeyCredential.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ PublicKeyCredential
Returns a new instance of PublicKeyCredential
753 754 755 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 753 def initialize(**args) update!(**args) end |
Instance Attribute Details
#format ⇒ String
The format of the key.
Corresponds to the JSON property format
746 747 748 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 746 def format @format end |
#key ⇒ String
The key data.
Corresponds to the JSON property key
751 752 753 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 751 def key @key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
758 759 760 761 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 758 def update!(**args) @format = args[:format] if args.key?(:format) @key = args[:key] if args.key?(:key) end |