Class: Google::Apis::DataflowV1b3::JobMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::JobMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/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
-
#big_table_details ⇒ Array<Google::Apis::DataflowV1b3::BigTableIoDetails>
Identification of a Cloud Bigtable source used in the Dataflow job.
-
#bigquery_details ⇒ Array<Google::Apis::DataflowV1b3::BigQueryIoDetails>
Identification of a BigQuery source used in the Dataflow job.
-
#datastore_details ⇒ Array<Google::Apis::DataflowV1b3::DatastoreIoDetails>
Identification of a Datastore source used in the Dataflow job.
-
#file_details ⇒ Array<Google::Apis::DataflowV1b3::FileIoDetails>
Identification of a File source used in the Dataflow job.
-
#pubsub_details ⇒ Array<Google::Apis::DataflowV1b3::PubSubIoDetails>
Identification of a Pub/Sub source used in the Dataflow job.
-
#sdk_version ⇒ Google::Apis::DataflowV1b3::SdkVersion
The version of the SDK used to run the job.
-
#spanner_details ⇒ Array<Google::Apis::DataflowV1b3::SpannerIoDetails>
Identification of a Spanner source used in the Dataflow job.
-
#user_display_properties ⇒ Hash<String,String>
List of display properties to help UI filter jobs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JobMetadata
constructor
A new instance of JobMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ JobMetadata
Returns a new instance of JobMetadata.
2438 2439 2440 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2438 def initialize(**args) update!(**args) end |
Instance Attribute Details
#big_table_details ⇒ Array<Google::Apis::DataflowV1b3::BigTableIoDetails>
Identification of a Cloud Bigtable source used in the Dataflow job.
Corresponds to the JSON property bigTableDetails
2401 2402 2403 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2401 def big_table_details @big_table_details end |
#bigquery_details ⇒ Array<Google::Apis::DataflowV1b3::BigQueryIoDetails>
Identification of a BigQuery source used in the Dataflow job.
Corresponds to the JSON property bigqueryDetails
2406 2407 2408 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2406 def bigquery_details @bigquery_details end |
#datastore_details ⇒ Array<Google::Apis::DataflowV1b3::DatastoreIoDetails>
Identification of a Datastore source used in the Dataflow job.
Corresponds to the JSON property datastoreDetails
2411 2412 2413 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2411 def datastore_details @datastore_details end |
#file_details ⇒ Array<Google::Apis::DataflowV1b3::FileIoDetails>
Identification of a File source used in the Dataflow job.
Corresponds to the JSON property fileDetails
2416 2417 2418 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2416 def file_details @file_details end |
#pubsub_details ⇒ Array<Google::Apis::DataflowV1b3::PubSubIoDetails>
Identification of a Pub/Sub source used in the Dataflow job.
Corresponds to the JSON property pubsubDetails
2421 2422 2423 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2421 def pubsub_details @pubsub_details end |
#sdk_version ⇒ Google::Apis::DataflowV1b3::SdkVersion
The version of the SDK used to run the job.
Corresponds to the JSON property sdkVersion
2426 2427 2428 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2426 def sdk_version @sdk_version end |
#spanner_details ⇒ Array<Google::Apis::DataflowV1b3::SpannerIoDetails>
Identification of a Spanner source used in the Dataflow job.
Corresponds to the JSON property spannerDetails
2431 2432 2433 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2431 def spanner_details @spanner_details end |
#user_display_properties ⇒ Hash<String,String>
List of display properties to help UI filter jobs.
Corresponds to the JSON property userDisplayProperties
2436 2437 2438 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2436 def user_display_properties @user_display_properties end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2443 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) @user_display_properties = args[:user_display_properties] if args.key?(:user_display_properties) end |