Class: Google::Apis::VmmigrationV1::ClientSecretCredentials
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::VmmigrationV1::ClientSecretCredentials
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/vmmigration_v1/classes.rb,
lib/google/apis/vmmigration_v1/representations.rb,
lib/google/apis/vmmigration_v1/representations.rb 
Overview
Message describing Azure Credentials using tenant ID, client ID and secret.
Instance Attribute Summary collapse
- 
  
    
      #client_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Azure client ID.
 - 
  
    
      #client_secret  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Input only.
 - 
  
    
      #tenant_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Azure tenant ID.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ClientSecretCredentials 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ClientSecretCredentials.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ClientSecretCredentials
Returns a new instance of ClientSecretCredentials.
      846 847 848  | 
    
      # File 'lib/google/apis/vmmigration_v1/classes.rb', line 846 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#client_id ⇒ String
Azure client ID.
Corresponds to the JSON property clientId
      834 835 836  | 
    
      # File 'lib/google/apis/vmmigration_v1/classes.rb', line 834 def client_id @client_id end  | 
  
#client_secret ⇒ String
Input only. Azure client secret.
Corresponds to the JSON property clientSecret
      839 840 841  | 
    
      # File 'lib/google/apis/vmmigration_v1/classes.rb', line 839 def client_secret @client_secret end  | 
  
#tenant_id ⇒ String
Azure tenant ID.
Corresponds to the JSON property tenantId
      844 845 846  | 
    
      # File 'lib/google/apis/vmmigration_v1/classes.rb', line 844 def tenant_id @tenant_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      851 852 853 854 855  | 
    
      # File 'lib/google/apis/vmmigration_v1/classes.rb', line 851 def update!(**args) @client_id = args[:client_id] if args.key?(:client_id) @client_secret = args[:client_secret] if args.key?(:client_secret) @tenant_id = args[:tenant_id] if args.key?(:tenant_id) end  |