Class: Google::Apis::DataflowV1b3::SdkVersion
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::SdkVersion
- 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
-
#bugs ⇒ Array<Google::Apis::DataflowV1b3::SdkBug>
Output only.
-
#sdk_support_status ⇒ String
The support status for this SDK version.
-
#version ⇒ String
The version of the SDK used to run the job.
-
#version_display_name ⇒ String
A readable string describing the version of the SDK.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SdkVersion
constructor
A new instance of SdkVersion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SdkVersion
Returns a new instance of SdkVersion.
4829 4830 4831 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4829 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bugs ⇒ Array<Google::Apis::DataflowV1b3::SdkBug>
Output only. Known bugs found in this SDK version.
Corresponds to the JSON property bugs
4812 4813 4814 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4812 def bugs @bugs end |
#sdk_support_status ⇒ String
The support status for this SDK version.
Corresponds to the JSON property sdkSupportStatus
4817 4818 4819 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4817 def sdk_support_status @sdk_support_status end |
#version ⇒ String
The version of the SDK used to run the job.
Corresponds to the JSON property version
4822 4823 4824 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4822 def version @version end |
#version_display_name ⇒ String
A readable string describing the version of the SDK.
Corresponds to the JSON property versionDisplayName
4827 4828 4829 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4827 def version_display_name @version_display_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4834 4835 4836 4837 4838 4839 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4834 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 |