Class: Google::Apis::DataflowV1b3::SdkVersion
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::SdkVersion
- 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
The version of the SDK used to run the jobl
Instance Attribute Summary collapse
-
#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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SdkVersion
Returns a new instance of SdkVersion
3329 3330 3331 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3329 def initialize(**args) update!(**args) end |
Instance Attribute Details
#sdk_support_status ⇒ String
The support status for this SDK version.
Corresponds to the JSON property sdkSupportStatus
3317 3318 3319 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3317 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
3322 3323 3324 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3322 def version @version end |
#version_display_name ⇒ String
A readable string describing the version of the sdk.
Corresponds to the JSON property versionDisplayName
3327 3328 3329 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3327 def version_display_name @version_display_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3334 3335 3336 3337 3338 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3334 def update!(**args) @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 |