Class: Google::Apis::DataprocV1::NativeBuildInfoUiData
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::NativeBuildInfoUiData
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/representations.rb
Instance Attribute Summary collapse
-
#build_class ⇒ String
Optional.
-
#build_info ⇒ Array<Google::Apis::DataprocV1::BuildInfo>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NativeBuildInfoUiData
constructor
A new instance of NativeBuildInfoUiData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NativeBuildInfoUiData
Returns a new instance of NativeBuildInfoUiData.
5373 5374 5375 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 5373 def initialize(**args) update!(**args) end |
Instance Attribute Details
#build_class ⇒ String
Optional. Build class of Native.
Corresponds to the JSON property buildClass
5366 5367 5368 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 5366 def build_class @build_class end |
#build_info ⇒ Array<Google::Apis::DataprocV1::BuildInfo>
Optional. Build related details.
Corresponds to the JSON property buildInfo
5371 5372 5373 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 5371 def build_info @build_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5378 5379 5380 5381 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 5378 def update!(**args) @build_class = args[:build_class] if args.key?(:build_class) @build_info = args[:build_info] if args.key?(:build_info) end |