Class: Google::Apis::DataflowV1b3::SdkVersion

Inherits:
Object
  • Object
show all
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

The version of the SDK used to run the job.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SdkVersion

Returns a new instance of SdkVersion.



5060
5061
5062
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5060

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

Instance Attribute Details

#bugsArray<Google::Apis::DataflowV1b3::SdkBug>

Output only. Known bugs found in this SDK version. Corresponds to the JSON property bugs



5043
5044
5045
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5043

def bugs
  @bugs
end

#sdk_support_statusString

The support status for this SDK version. Corresponds to the JSON property sdkSupportStatus

Returns:

  • (String)


5048
5049
5050
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5048

def sdk_support_status
  @sdk_support_status
end

#versionString

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

Returns:

  • (String)


5053
5054
5055
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5053

def version
  @version
end

#version_display_nameString

A readable string describing the version of the SDK. Corresponds to the JSON property versionDisplayName

Returns:

  • (String)


5058
5059
5060
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5058

def version_display_name
  @version_display_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5065
5066
5067
5068
5069
5070
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5065

def update!(**args)
  @bugs = args[:bugs] if args.key?(:bugs)
  @sdk_support_status = args[:sdk_support_status] if args.key?(:sdk_support_status)
  @version = args[:version] if args.key?(:version)
  @version_display_name = args[:version_display_name] if args.key?(:version_display_name)
end