Class: Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1SdkVersion

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datapipelines_v1/classes.rb,
lib/google/apis/datapipelines_v1/representations.rb,
lib/google/apis/datapipelines_v1/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) ⇒ GoogleCloudDatapipelinesV1SdkVersion

Returns a new instance of GoogleCloudDatapipelinesV1SdkVersion.



790
791
792
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 790

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

Instance Attribute Details

#sdk_support_statusString

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

Returns:

  • (String)


778
779
780
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 778

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)


783
784
785
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 783

def version
  @version
end

#version_display_nameString

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

Returns:

  • (String)


788
789
790
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 788

def version_display_name
  @version_display_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



795
796
797
798
799
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 795

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