Class: Google::Apis::WebsecurityscannerV1beta::Schedule

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/websecurityscanner_v1beta/classes.rb,
generated/google/apis/websecurityscanner_v1beta/representations.rb,
generated/google/apis/websecurityscanner_v1beta/representations.rb

Overview

Scan schedule configuration.

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) ⇒ Schedule

Returns a new instance of Schedule



840
841
842
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 840

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

Instance Attribute Details

#interval_duration_daysFixnum

Required. The duration of time between executions in days. Corresponds to the JSON property intervalDurationDays

Returns:

  • (Fixnum)


830
831
832
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 830

def interval_duration_days
  @interval_duration_days
end

#schedule_timeString

A timestamp indicates when the next run will be scheduled. The value is refreshed by the server after each run. If unspecified, it will default to current server time, which means the scan will be scheduled to start immediately. Corresponds to the JSON property scheduleTime

Returns:

  • (String)


838
839
840
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 838

def schedule_time
  @schedule_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



845
846
847
848
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 845

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