Class: Google::Apis::CloudidentityV1beta1::IdpCredential
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::IdpCredential
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1beta1/classes.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb
Overview
Credential for verifying signatures produced by the Identity Provider.
Instance Attribute Summary collapse
-
#dsa_key_info ⇒ Google::Apis::CloudidentityV1beta1::DsaPublicKeyInfo
Information of a DSA public key.
-
#name ⇒ String
Output only.
-
#rsa_key_info ⇒ Google::Apis::CloudidentityV1beta1::RsaPublicKeyInfo
Information of a RSA public key.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IdpCredential
constructor
A new instance of IdpCredential.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IdpCredential
Returns a new instance of IdpCredential.
2651 2652 2653 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2651 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dsa_key_info ⇒ Google::Apis::CloudidentityV1beta1::DsaPublicKeyInfo
Information of a DSA public key.
Corresponds to the JSON property dsaKeyInfo
2633 2634 2635 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2633 def dsa_key_info @dsa_key_info end |
#name ⇒ String
Output only. Resource name of the credential.
Corresponds to the JSON property name
2639 2640 2641 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2639 def name @name end |
#rsa_key_info ⇒ Google::Apis::CloudidentityV1beta1::RsaPublicKeyInfo
Information of a RSA public key.
Corresponds to the JSON property rsaKeyInfo
2644 2645 2646 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2644 def rsa_key_info @rsa_key_info end |
#update_time ⇒ String
Output only. Time when the IdpCredential was last updated.
Corresponds to the JSON property updateTime
2649 2650 2651 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2649 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2656 2657 2658 2659 2660 2661 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2656 def update!(**args) @dsa_key_info = args[:dsa_key_info] if args.key?(:dsa_key_info) @name = args[:name] if args.key?(:name) @rsa_key_info = args[:rsa_key_info] if args.key?(:rsa_key_info) @update_time = args[:update_time] if args.key?(:update_time) end |