Class: Google::Apis::AnalyticsV3::UnsampledReport::CloudStorageDownloadDetails
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AnalyticsV3::UnsampledReport::CloudStorageDownloadDetails
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analytics_v3/classes.rb,
 generated/google/apis/analytics_v3/representations.rb,
 generated/google/apis/analytics_v3/representations.rb
Overview
Download details for a file stored in Google Cloud Storage.
Instance Attribute Summary collapse
- 
  
    
      #bucket_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Id of the bucket the file object is stored in. 
- 
  
    
      #obj_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Id of the file object containing the report data. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CloudStorageDownloadDetails 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CloudStorageDownloadDetails. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CloudStorageDownloadDetails
Returns a new instance of CloudStorageDownloadDetails
| 5113 5114 5115 | # File 'generated/google/apis/analytics_v3/classes.rb', line 5113 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#bucket_id ⇒ String
Id of the bucket the file object is stored in.
Corresponds to the JSON property bucketId
| 5106 5107 5108 | # File 'generated/google/apis/analytics_v3/classes.rb', line 5106 def bucket_id @bucket_id end | 
#obj_id ⇒ String
Id of the file object containing the report data.
Corresponds to the JSON property objectId
| 5111 5112 5113 | # File 'generated/google/apis/analytics_v3/classes.rb', line 5111 def obj_id @obj_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 5118 5119 5120 5121 | # File 'generated/google/apis/analytics_v3/classes.rb', line 5118 def update!(**args) @bucket_id = args[:bucket_id] if args.key?(:bucket_id) @obj_id = args[:obj_id] if args.key?(:obj_id) end |