Class: Google::Apis::CloudidentityV1beta1::IdpCredential

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IdpCredential

Returns a new instance of IdpCredential.



2689
2690
2691
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2689

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dsa_key_infoGoogle::Apis::CloudidentityV1beta1::DsaPublicKeyInfo

Information of a DSA public key. Corresponds to the JSON property dsaKeyInfo



2671
2672
2673
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2671

def dsa_key_info
  @dsa_key_info
end

#nameString

Output only. Resource name of the credential. Corresponds to the JSON property name

Returns:

  • (String)


2677
2678
2679
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2677

def name
  @name
end

#rsa_key_infoGoogle::Apis::CloudidentityV1beta1::RsaPublicKeyInfo

Information of a RSA public key. Corresponds to the JSON property rsaKeyInfo



2682
2683
2684
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2682

def rsa_key_info
  @rsa_key_info
end

#update_timeString

Output only. Time when the IdpCredential was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


2687
2688
2689
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2687

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2694
2695
2696
2697
2698
2699
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2694

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