class Google::Auth::ServiceAccountCredentials

def apply! a_hash, opts = {}

ServiceAccountJwtHeaderCredentials for certain cases.
Extends the base class to use a transient
def apply! a_hash, opts = {}
  if enable_self_signed_jwt?
    apply_self_signed_jwt! a_hash
  else
    super
  end
end