Class: Google::Apis::CloudiotV1::PublicKeyCredential
- Inherits:
-
Object
- Object
- Google::Apis::CloudiotV1::PublicKeyCredential
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudiot_v1/classes.rb,
lib/google/apis/cloudiot_v1/representations.rb,
lib/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.
Constructor Details
#initialize(**args) ⇒ PublicKeyCredential
Returns a new instance of PublicKeyCredential.
951 952 953 |
# File 'lib/google/apis/cloudiot_v1/classes.rb', line 951 def initialize(**args) update!(**args) end |
Instance Attribute Details
#format ⇒ String
The format of the key.
Corresponds to the JSON property format
944 945 946 |
# File 'lib/google/apis/cloudiot_v1/classes.rb', line 944 def format @format end |
#key ⇒ String
The key data.
Corresponds to the JSON property key
949 950 951 |
# File 'lib/google/apis/cloudiot_v1/classes.rb', line 949 def key @key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
956 957 958 959 |
# File 'lib/google/apis/cloudiot_v1/classes.rb', line 956 def update!(**args) @format = args[:format] if args.key?(:format) @key = args[:key] if args.key?(:key) end |