Class: Google::Apis::BigquerydatatransferV1::TransferRun

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

Overview

Represents a data transfer run.

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

Returns a new instance of TransferRun



820
821
822
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 820

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

Instance Attribute Details

#data_source_idString

Data source id. Output only. Corresponds to the JSON property dataSourceId

Returns:

  • (String)


737
738
739
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 737

def data_source_id
  @data_source_id
end

#dataset_regionString

Region in which BigQuery dataset is located. Currently possible values are: "US" and "EU". Output only. Corresponds to the JSON property datasetRegion

Returns:

  • (String)


744
745
746
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 744

def dataset_region
  @dataset_region
end

#destination_dataset_idString

The BigQuery target dataset id. Corresponds to the JSON property destinationDatasetId

Returns:

  • (String)


749
750
751
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 749

def destination_dataset_id
  @destination_dataset_id
end

#end_timeString

Time when transfer run ended. Parameter ignored by server for input requests. Output only. Corresponds to the JSON property endTime

Returns:

  • (String)


756
757
758
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 756

def end_time
  @end_time
end

#nameString

The resource name of the transfer run. Transfer run names have the form projects/project_id/locations/location/transferConfigs/config_id/runs/ run_id`. The name is ignored when creating a transfer run. Corresponds to the JSON propertyname`

Returns:

  • (String)


765
766
767
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 765

def name
  @name
end

#paramsHash<String,Object>

Data transfer specific parameters. Corresponds to the JSON property params

Returns:

  • (Hash<String,Object>)


770
771
772
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 770

def params
  @params
end

#run_timeString

For batch transfer runs, specifies the date and time that data should be ingested. Corresponds to the JSON property runTime

Returns:

  • (String)


776
777
778
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 776

def run_time
  @run_time
end

#scheduleString

Describes the schedule of this transfer run if it was created as part of a regular schedule. For batch transfer runs that are directly created, this is empty. NOTE: the system might choose to delay the schedule depending on the current load, so schedule_time doesn't always matches this. Output only. Corresponds to the JSON property schedule

Returns:

  • (String)


786
787
788
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 786

def schedule
  @schedule
end

#schedule_timeString

Minimum time after which a transfer run can be started. Corresponds to the JSON property scheduleTime

Returns:

  • (String)


791
792
793
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 791

def schedule_time
  @schedule_time
end

#start_timeString

Time when transfer run was started. Parameter ignored by server for input requests. Output only. Corresponds to the JSON property startTime

Returns:

  • (String)


798
799
800
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 798

def start_time
  @start_time
end

#stateString

Data transfer run state. Ignored for input requests. Output only. Corresponds to the JSON property state

Returns:

  • (String)


804
805
806
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 804

def state
  @state
end

#update_timeString

Last time the data transfer run state was updated. Output only. Corresponds to the JSON property updateTime

Returns:

  • (String)


810
811
812
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 810

def update_time
  @update_time
end

#user_idFixnum

Unique ID of the user on whose behalf transfer is done. Applicable only to data sources that do not support service accounts. When set to 0, the data source service account credentials are used. Output only. Corresponds to the JSON property userId

Returns:

  • (Fixnum)


818
819
820
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 818

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 825

def update!(**args)
  @data_source_id = args[:data_source_id] if args.key?(:data_source_id)
  @dataset_region = args[:dataset_region] if args.key?(:dataset_region)
  @destination_dataset_id = args[:destination_dataset_id] if args.key?(:destination_dataset_id)
  @end_time = args[:end_time] if args.key?(:end_time)
  @name = args[:name] if args.key?(:name)
  @params = args[:params] if args.key?(:params)
  @run_time = args[:run_time] if args.key?(:run_time)
  @schedule = args[:schedule] if args.key?(:schedule)
  @schedule_time = args[:schedule_time] if args.key?(:schedule_time)
  @start_time = args[:start_time] if args.key?(:start_time)
  @state = args[:state] if args.key?(:state)
  @update_time = args[:update_time] if args.key?(:update_time)
  @user_id = args[:user_id] if args.key?(:user_id)
end