Class: Google::Cloud::Datastream::V1::Validation
- Inherits:
-
Object
- Object
- Google::Cloud::Datastream::V1::Validation
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/datastream/v1/datastream_resources.rb
Overview
A validation to perform on a stream.
Defined Under Namespace
Modules: State
Instance Attribute Summary collapse
-
#code ⇒ ::String
A custom code identifying this validation.
-
#description ⇒ ::String
A short description of the validation.
-
#message ⇒ ::Array<::Google::Cloud::Datastream::V1::ValidationMessage>
Messages reflecting the validation results.
-
#state ⇒ ::Google::Cloud::Datastream::V1::Validation::State
readonly
Output only.
Instance Attribute Details
#code ⇒ ::String
Returns A custom code identifying this validation.
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 |
# File 'proto_docs/google/cloud/datastream/v1/datastream_resources.rb', line 1407 class Validation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Validation execution state. module State # Unspecified state. STATE_UNSPECIFIED = 0 # Validation did not execute. NOT_EXECUTED = 1 # Validation failed. FAILED = 2 # Validation passed. PASSED = 3 # Validation executed with warnings. WARNING = 4 end end |
#description ⇒ ::String
Returns A short description of the validation.
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 |
# File 'proto_docs/google/cloud/datastream/v1/datastream_resources.rb', line 1407 class Validation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Validation execution state. module State # Unspecified state. STATE_UNSPECIFIED = 0 # Validation did not execute. NOT_EXECUTED = 1 # Validation failed. FAILED = 2 # Validation passed. PASSED = 3 # Validation executed with warnings. WARNING = 4 end end |
#message ⇒ ::Array<::Google::Cloud::Datastream::V1::ValidationMessage>
Returns Messages reflecting the validation results.
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 |
# File 'proto_docs/google/cloud/datastream/v1/datastream_resources.rb', line 1407 class Validation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Validation execution state. module State # Unspecified state. STATE_UNSPECIFIED = 0 # Validation did not execute. NOT_EXECUTED = 1 # Validation failed. FAILED = 2 # Validation passed. PASSED = 3 # Validation executed with warnings. WARNING = 4 end end |
#state ⇒ ::Google::Cloud::Datastream::V1::Validation::State (readonly)
Returns Output only. Validation execution status.
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 |
# File 'proto_docs/google/cloud/datastream/v1/datastream_resources.rb', line 1407 class Validation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Validation execution state. module State # Unspecified state. STATE_UNSPECIFIED = 0 # Validation did not execute. NOT_EXECUTED = 1 # Validation failed. FAILED = 2 # Validation passed. PASSED = 3 # Validation executed with warnings. WARNING = 4 end end |