Class: Google::Apis::ComputeBeta::Reference
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeBeta::Reference
 
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
 generated/google/apis/compute_beta/representations.rb,
 generated/google/apis/compute_beta/representations.rb
Overview
Represents a reference to a resource.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] Type of the resource. 
- 
  
    
      #reference_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A description of the reference type with no implied semantics. 
- 
  
    
      #referrer  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    URL of the resource which refers to the target. 
- 
  
    
      #target  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    URL of the resource to which this reference points. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Reference 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Reference. 
- 
  
    
      #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) ⇒ Reference
Returns a new instance of Reference
| 13910 13911 13912 | # File 'generated/google/apis/compute_beta/classes.rb', line 13910 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
[Output Only] Type of the resource. Always compute#reference for references.
Corresponds to the JSON property kind
| 13891 13892 13893 | # File 'generated/google/apis/compute_beta/classes.rb', line 13891 def kind @kind end | 
#reference_type ⇒ String
A description of the reference type with no implied semantics. Possible values include:
- MEMBER_OF
Corresponds to the JSON property referenceType
| 13898 13899 13900 | # File 'generated/google/apis/compute_beta/classes.rb', line 13898 def reference_type @reference_type end | 
#referrer ⇒ String
URL of the resource which refers to the target.
Corresponds to the JSON property referrer
| 13903 13904 13905 | # File 'generated/google/apis/compute_beta/classes.rb', line 13903 def referrer @referrer end | 
#target ⇒ String
URL of the resource to which this reference points.
Corresponds to the JSON property target
| 13908 13909 13910 | # File 'generated/google/apis/compute_beta/classes.rb', line 13908 def target @target end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 13915 13916 13917 13918 13919 13920 | # File 'generated/google/apis/compute_beta/classes.rb', line 13915 def update!(**args) @kind = args[:kind] if args.key?(:kind) @reference_type = args[:reference_type] if args.key?(:reference_type) @referrer = args[:referrer] if args.key?(:referrer) @target = args[:target] if args.key?(:target) end |