Class: Google::Apis::ComputeBeta::XpnResourceId
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeBeta::XpnResourceId
 
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
 generated/google/apis/compute_beta/representations.rb,
 generated/google/apis/compute_beta/representations.rb
Overview
Service resource (a.k.a service project) ID.
Instance Attribute Summary collapse
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the service resource. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the service resource. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ XpnResourceId 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of XpnResourceId. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ XpnResourceId
Returns a new instance of XpnResourceId
| 21775 21776 21777 | # File 'generated/google/apis/compute_beta/classes.rb', line 21775 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#id ⇒ String
The ID of the service resource. In the case of projects, this field matches
the project ID (e.g., my-project), not the project number (e.g., 12345678).
Corresponds to the JSON property id
| 21768 21769 21770 | # File 'generated/google/apis/compute_beta/classes.rb', line 21768 def id @id end | 
#type ⇒ String
The type of the service resource.
Corresponds to the JSON property type
| 21773 21774 21775 | # File 'generated/google/apis/compute_beta/classes.rb', line 21773 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 21780 21781 21782 21783 | # File 'generated/google/apis/compute_beta/classes.rb', line 21780 def update!(**args) @id = args[:id] if args.key?(:id) @type = args[:type] if args.key?(:type) end |