Class: Google::Apis::StoragetransferV1::Schedule

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

Overview

Transfers can be scheduled to recur or to run just once.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Schedule

Returns a new instance of Schedule.



972
973
974
# File 'lib/google/apis/storagetransfer_v1/classes.rb', line 972

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

Instance Attribute Details

#end_time_of_dayGoogle::Apis::StoragetransferV1::TimeOfDay

Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Corresponds to the JSON property endTimeOfDay



933
934
935
# File 'lib/google/apis/storagetransfer_v1/classes.rb', line 933

def end_time_of_day
  @end_time_of_day
end

#repeat_intervalString

Interval between the start of each scheduled TransferOperation. If unspecified, the default value is 24 hours. This value may not be less than 1 hour. Corresponds to the JSON property repeatInterval

Returns:

  • (String)


939
940
941
# File 'lib/google/apis/storagetransfer_v1/classes.rb', line 939

def repeat_interval
  @repeat_interval
end

#schedule_end_dateGoogle::Apis::StoragetransferV1::Date

Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day, with a zero year (e.g., an anniversary) * A year on its own, with a zero month and a zero day * A year and month, with a zero day (e.g., a credit card expiration date) Related types: * google.type.TimeOfDay * google.type. DateTime * google.protobuf.Timestamp Corresponds to the JSON property scheduleEndDate



951
952
953
# File 'lib/google/apis/storagetransfer_v1/classes.rb', line 951

def schedule_end_date
  @schedule_end_date
end

#schedule_start_dateGoogle::Apis::StoragetransferV1::Date

Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day, with a zero year (e.g., an anniversary) * A year on its own, with a zero month and a zero day * A year and month, with a zero day (e.g., a credit card expiration date) Related types: * google.type.TimeOfDay * google.type. DateTime * google.protobuf.Timestamp Corresponds to the JSON property scheduleStartDate



963
964
965
# File 'lib/google/apis/storagetransfer_v1/classes.rb', line 963

def schedule_start_date
  @schedule_start_date
end

#start_time_of_dayGoogle::Apis::StoragetransferV1::TimeOfDay

Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Corresponds to the JSON property startTimeOfDay



970
971
972
# File 'lib/google/apis/storagetransfer_v1/classes.rb', line 970

def start_time_of_day
  @start_time_of_day
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



977
978
979
980
981
982
983
# File 'lib/google/apis/storagetransfer_v1/classes.rb', line 977

def update!(**args)
  @end_time_of_day = args[:end_time_of_day] if args.key?(:end_time_of_day)
  @repeat_interval = args[:repeat_interval] if args.key?(:repeat_interval)
  @schedule_end_date = args[:schedule_end_date] if args.key?(:schedule_end_date)
  @schedule_start_date = args[:schedule_start_date] if args.key?(:schedule_start_date)
  @start_time_of_day = args[:start_time_of_day] if args.key?(:start_time_of_day)
end