class Google::Apis::AnalyticsV3::UnsampledReport::CloudStorageDownloadDetails
Download details for a file stored in Google
Cloud Storage.
Attributes
bucket_id[RW]
Id of the bucket the file object is stored in. Corresponds to the JSON property `bucketId` @return [String]
obj_id[RW]
Id of the file object containing the report data. Corresponds to the JSON property `objectId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 5087 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/analytics_v3/classes.rb, line 5092 def update!(**args) @bucket_id = args[:bucket_id] if args.key?(:bucket_id) @obj_id = args[:obj_id] if args.key?(:obj_id) end