Class: Google::Apis::AnalyticsV3::UnsampledReport::CloudStorageDownloadDetails

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CloudStorageDownloadDetails

Returns a new instance of CloudStorageDownloadDetails



5181
5182
5183
# File 'generated/google/apis/analytics_v3/classes.rb', line 5181

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bucket_idString

Id of the bucket the file object is stored in. Corresponds to the JSON property bucketId

Returns:

  • (String)


5174
5175
5176
# File 'generated/google/apis/analytics_v3/classes.rb', line 5174

def bucket_id
  @bucket_id
end

#obj_idString

Id of the file object containing the report data. Corresponds to the JSON property objectId

Returns:

  • (String)


5179
5180
5181
# File 'generated/google/apis/analytics_v3/classes.rb', line 5179

def obj_id
  @obj_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5186
5187
5188
5189
# File 'generated/google/apis/analytics_v3/classes.rb', line 5186

def update!(**args)
  @bucket_id = args[:bucket_id] if args.key?(:bucket_id)
  @obj_id = args[:obj_id] if args.key?(:obj_id)
end