Class: Google::Cloud::Dataflow::V1beta3::SdkBug
- Inherits:
-
Object
- Object
- Google::Cloud::Dataflow::V1beta3::SdkBug
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/dataflow/v1beta3/jobs.rb
Overview
A bug found in the Dataflow SDK.
Defined Under Namespace
Instance Attribute Summary collapse
-
#severity ⇒ ::Google::Cloud::Dataflow::V1beta3::SdkBug::Severity
readonly
Output only.
-
#type ⇒ ::Google::Cloud::Dataflow::V1beta3::SdkBug::Type
readonly
Output only.
-
#uri ⇒ ::String
readonly
Output only.
Instance Attribute Details
#severity ⇒ ::Google::Cloud::Dataflow::V1beta3::SdkBug::Severity (readonly)
Returns Output only. How severe the SDK bug is.
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 |
# File 'proto_docs/google/dataflow/v1beta3/jobs.rb', line 381 class SdkBug include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Nature of the issue, ordered from least severe to most. Other bug types may # be added to this list in the future. module Type # Unknown issue with this SDK. TYPE_UNSPECIFIED = 0 # Catch-all for SDK bugs that don't fit in the below categories. GENERAL = 1 # Using this version of the SDK may result in degraded performance. PERFORMANCE = 2 # Using this version of the SDK may cause data loss. DATALOSS = 3 end # Indicates the severity of the bug. Other severities may be added to this # list in the future. module Severity # A bug of unknown severity. SEVERITY_UNSPECIFIED = 0 # A minor bug that that may reduce reliability or performance for some # jobs. Impact will be minimal or non-existent for most jobs. NOTICE = 1 # A bug that has some likelihood of causing performance degradation, data # loss, or job failures. WARNING = 2 # A bug with extremely significant impact. Jobs may fail erroneously, # performance may be severely degraded, and data loss may be very likely. SEVERE = 3 end end |
#type ⇒ ::Google::Cloud::Dataflow::V1beta3::SdkBug::Type (readonly)
Returns Output only. Describes the impact of this SDK bug.
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 |
# File 'proto_docs/google/dataflow/v1beta3/jobs.rb', line 381 class SdkBug include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Nature of the issue, ordered from least severe to most. Other bug types may # be added to this list in the future. module Type # Unknown issue with this SDK. TYPE_UNSPECIFIED = 0 # Catch-all for SDK bugs that don't fit in the below categories. GENERAL = 1 # Using this version of the SDK may result in degraded performance. PERFORMANCE = 2 # Using this version of the SDK may cause data loss. DATALOSS = 3 end # Indicates the severity of the bug. Other severities may be added to this # list in the future. module Severity # A bug of unknown severity. SEVERITY_UNSPECIFIED = 0 # A minor bug that that may reduce reliability or performance for some # jobs. Impact will be minimal or non-existent for most jobs. NOTICE = 1 # A bug that has some likelihood of causing performance degradation, data # loss, or job failures. WARNING = 2 # A bug with extremely significant impact. Jobs may fail erroneously, # performance may be severely degraded, and data loss may be very likely. SEVERE = 3 end end |
#uri ⇒ ::String (readonly)
Returns Output only. Link to more information on the bug.
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 |
# File 'proto_docs/google/dataflow/v1beta3/jobs.rb', line 381 class SdkBug include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Nature of the issue, ordered from least severe to most. Other bug types may # be added to this list in the future. module Type # Unknown issue with this SDK. TYPE_UNSPECIFIED = 0 # Catch-all for SDK bugs that don't fit in the below categories. GENERAL = 1 # Using this version of the SDK may result in degraded performance. PERFORMANCE = 2 # Using this version of the SDK may cause data loss. DATALOSS = 3 end # Indicates the severity of the bug. Other severities may be added to this # list in the future. module Severity # A bug of unknown severity. SEVERITY_UNSPECIFIED = 0 # A minor bug that that may reduce reliability or performance for some # jobs. Impact will be minimal or non-existent for most jobs. NOTICE = 1 # A bug that has some likelihood of causing performance degradation, data # loss, or job failures. WARNING = 2 # A bug with extremely significant impact. Jobs may fail erroneously, # performance may be severely degraded, and data loss may be very likely. SEVERE = 3 end end |