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
872 873 874 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 872 def initialize(**args) update!(**args) end |
Instance Attribute Details
#format ⇒ String
The format of the key.
Corresponds to the JSON property format
865 866 867 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 865 def format @format end |
#key ⇒ String
The key data.
Corresponds to the JSON property key
870 871 872 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 870 def key @key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
877 878 879 880 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 877 def update!(**args) @format = args[:format] if args.key?(:format) @key = args[:key] if args.key?(:key) end |