Class: Google::Apis::DataflowV1b3::SdkBug

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

A bug found in the Dataflow SDK.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SdkBug

Returns a new instance of SdkBug.



4685
4686
4687
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4685

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

Instance Attribute Details

#severityString

Output only. How severe the SDK bug is. Corresponds to the JSON property severity

Returns:

  • (String)


4673
4674
4675
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4673

def severity
  @severity
end

#typeString

Output only. Describes the impact of this SDK bug. Corresponds to the JSON property type

Returns:

  • (String)


4678
4679
4680
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4678

def type
  @type
end

#uriString

Output only. Link to more information on the bug. Corresponds to the JSON property uri

Returns:

  • (String)


4683
4684
4685
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4683

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4690
4691
4692
4693
4694
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4690

def update!(**args)
  @severity = args[:severity] if args.key?(:severity)
  @type = args[:type] if args.key?(:type)
  @uri = args[:uri] if args.key?(:uri)
end