Class: Google::Apis::YoutubereportingV1::Job
- Inherits:
-
Object
- Object
- Google::Apis::YoutubereportingV1::Job
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/youtubereporting_v1/classes.rb,
lib/google/apis/youtubereporting_v1/representations.rb,
lib/google/apis/youtubereporting_v1/representations.rb
Overview
A job creating reports of a specific type.
Instance Attribute Summary collapse
-
#create_time ⇒ String
The creation date/time of the job.
-
#expire_time ⇒ String
The date/time when this job will expire/expired.
-
#id ⇒ String
The server-generated ID of the job (max. 40 characters).
-
#name ⇒ String
The name of the job (max. 100 characters).
-
#report_type_id ⇒ String
The type of reports this job creates.
-
#system_managed ⇒ Boolean
(also: #system_managed?)
True if this a system-managed job that cannot be modified by the user; otherwise false.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Job
constructor
A new instance of Job.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Job
Returns a new instance of Job.
654 655 656 |
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 654 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
The creation date/time of the job.
Corresponds to the JSON property createTime
624 625 626 |
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 624 def create_time @create_time end |
#expire_time ⇒ String
The date/time when this job will expire/expired. After a job expired, no new
reports are generated.
Corresponds to the JSON property expireTime
630 631 632 |
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 630 def expire_time @expire_time end |
#id ⇒ String
The server-generated ID of the job (max. 40 characters).
Corresponds to the JSON property id
635 636 637 |
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 635 def id @id end |
#name ⇒ String
The name of the job (max. 100 characters).
Corresponds to the JSON property name
640 641 642 |
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 640 def name @name end |
#report_type_id ⇒ String
The type of reports this job creates. Corresponds to the ID of a ReportType.
Corresponds to the JSON property reportTypeId
645 646 647 |
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 645 def report_type_id @report_type_id end |
#system_managed ⇒ Boolean Also known as: system_managed?
True if this a system-managed job that cannot be modified by the user;
otherwise false.
Corresponds to the JSON property systemManaged
651 652 653 |
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 651 def system_managed @system_managed end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
659 660 661 662 663 664 665 666 |
# File 'lib/google/apis/youtubereporting_v1/classes.rb', line 659 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @expire_time = args[:expire_time] if args.key?(:expire_time) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) @report_type_id = args[:report_type_id] if args.key?(:report_type_id) @system_managed = args[:system_managed] if args.key?(:system_managed) end |