Class: Google::Apis::OndemandscanningV1::ResourceDescriptor
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::OndemandscanningV1::ResourceDescriptor
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/ondemandscanning_v1/classes.rb,
lib/google/apis/ondemandscanning_v1/representations.rb,
lib/google/apis/ondemandscanning_v1/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #annotations  ⇒ Hash<String,Object> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
annotations. - 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
contentNOTE: Values are automatically base64 encoded/decoded in the client library. - 
  
    
      #digest  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
digest. - 
  
    
      #download_location  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
downloadLocation. - 
  
    
      #media_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
mediaType. - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
name. - 
  
    
      #uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
uri. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ResourceDescriptor 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ResourceDescriptor.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ResourceDescriptor
Returns a new instance of ResourceDescriptor.
      2766 2767 2768  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2766 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#annotations ⇒ Hash<String,Object>
Corresponds to the JSON property annotations
      2733 2734 2735  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2733 def annotations @annotations end  | 
  
#content ⇒ String
Corresponds to the JSON property content
NOTE: Values are automatically base64 encoded/decoded in the client library.
      2739 2740 2741  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2739 def content @content end  | 
  
#digest ⇒ Hash<String,String>
Corresponds to the JSON property digest
      2744 2745 2746  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2744 def digest @digest end  | 
  
#download_location ⇒ String
Corresponds to the JSON property downloadLocation
      2749 2750 2751  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2749 def download_location @download_location end  | 
  
#media_type ⇒ String
Corresponds to the JSON property mediaType
      2754 2755 2756  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2754 def media_type @media_type end  | 
  
#name ⇒ String
Corresponds to the JSON property name
      2759 2760 2761  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2759 def name @name end  | 
  
#uri ⇒ String
Corresponds to the JSON property uri
      2764 2765 2766  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2764 def uri @uri end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2771 2772 2773 2774 2775 2776 2777 2778 2779  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2771 def update!(**args) @annotations = args[:annotations] if args.key?(:annotations) @content = args[:content] if args.key?(:content) @digest = args[:digest] if args.key?(:digest) @download_location = args[:download_location] if args.key?(:download_location) @media_type = args[:media_type] if args.key?(:media_type) @name = args[:name] if args.key?(:name) @uri = args[:uri] if args.key?(:uri) end  |