Class: Google::Apis::DataflowV1b3::JobMetadata

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

Overview

Metadata available primarily for filtering jobs. Will be included in the ListJob response and Job SUMMARY view.

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

Returns a new instance of JobMetadata.



2110
2111
2112
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2110

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

Instance Attribute Details

#big_table_detailsArray<Google::Apis::DataflowV1b3::BigTableIoDetails>

Identification of a BigTable source used in the Dataflow job. Corresponds to the JSON property bigTableDetails



2078
2079
2080
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2078

def big_table_details
  @big_table_details
end

#bigquery_detailsArray<Google::Apis::DataflowV1b3::BigQueryIoDetails>

Identification of a BigQuery source used in the Dataflow job. Corresponds to the JSON property bigqueryDetails



2083
2084
2085
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2083

def bigquery_details
  @bigquery_details
end

#datastore_detailsArray<Google::Apis::DataflowV1b3::DatastoreIoDetails>

Identification of a Datastore source used in the Dataflow job. Corresponds to the JSON property datastoreDetails



2088
2089
2090
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2088

def datastore_details
  @datastore_details
end

#file_detailsArray<Google::Apis::DataflowV1b3::FileIoDetails>

Identification of a File source used in the Dataflow job. Corresponds to the JSON property fileDetails



2093
2094
2095
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2093

def file_details
  @file_details
end

#pubsub_detailsArray<Google::Apis::DataflowV1b3::PubSubIoDetails>

Identification of a PubSub source used in the Dataflow job. Corresponds to the JSON property pubsubDetails



2098
2099
2100
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2098

def pubsub_details
  @pubsub_details
end

#sdk_versionGoogle::Apis::DataflowV1b3::SdkVersion

The version of the SDK used to run the job. Corresponds to the JSON property sdkVersion



2103
2104
2105
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2103

def sdk_version
  @sdk_version
end

#spanner_detailsArray<Google::Apis::DataflowV1b3::SpannerIoDetails>

Identification of a Spanner source used in the Dataflow job. Corresponds to the JSON property spannerDetails



2108
2109
2110
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2108

def spanner_details
  @spanner_details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2115
2116
2117
2118
2119
2120
2121
2122
2123
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2115

def update!(**args)
  @big_table_details = args[:big_table_details] if args.key?(:big_table_details)
  @bigquery_details = args[:bigquery_details] if args.key?(:bigquery_details)
  @datastore_details = args[:datastore_details] if args.key?(:datastore_details)
  @file_details = args[:file_details] if args.key?(:file_details)
  @pubsub_details = args[:pubsub_details] if args.key?(:pubsub_details)
  @sdk_version = args[:sdk_version] if args.key?(:sdk_version)
  @spanner_details = args[:spanner_details] if args.key?(:spanner_details)
end