Class: Google::Apis::YoutubePartnerV1::ObjectIdProp
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::ObjectIdProp
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_partner_v1/classes.rb,
generated/google/apis/youtube_partner_v1/representations.rb,
generated/google/apis/youtube_partner_v1/representations.rb
Overview
This is a copy of the tech.blob.ObjectId proto, which could not be used directly here due to transitive closure issues with JavaScript support; see http://b/8801763.
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
The name of the bucket to which this object belongs.
-
#generation ⇒ Fixnum
Generation of the object.
-
#object_name ⇒ String
The name of the object.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ObjectIdProp
constructor
A new instance of ObjectIdProp.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ObjectIdProp
Returns a new instance of ObjectIdProp.
2827 2828 2829 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2827 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bucket_name ⇒ String
The name of the bucket to which this object belongs.
Corresponds to the JSON property bucketName
2812 2813 2814 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2812 def bucket_name @bucket_name end |
#generation ⇒ Fixnum
Generation of the object. Generations are monotonically increasing across
writes, allowing them to be be compared to determine which generation is newer.
If this is omitted in a request, then you are requesting the live object. See
http://go/bigstore-versions
Corresponds to the JSON property generation
2820 2821 2822 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2820 def generation @generation end |
#object_name ⇒ String
The name of the object.
Corresponds to the JSON property objectName
2825 2826 2827 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2825 def object_name @object_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2832 2833 2834 2835 2836 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 2832 def update!(**args) @bucket_name = args[:bucket_name] if args.key?(:bucket_name) @generation = args[:generation] if args.key?(:generation) @object_name = args[:object_name] if args.key?(:object_name) end |