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.
2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 |
# File 'proto_docs/google/cloud/datastream/v1/datastream_resources.rb', line 2016 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.
2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 |
# File 'proto_docs/google/cloud/datastream/v1/datastream_resources.rb', line 2016 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.
2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 |
# File 'proto_docs/google/cloud/datastream/v1/datastream_resources.rb', line 2016 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.
2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 |
# File 'proto_docs/google/cloud/datastream/v1/datastream_resources.rb', line 2016 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 |