Class: Google::Cloud::Build::V1::Build::Warning
- Inherits:
-
Object
- Object
- Google::Cloud::Build::V1::Build::Warning
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/devtools/cloudbuild/v1/cloudbuild.rb
Overview
A non-fatal problem encountered during the execution of the build.
Defined Under Namespace
Modules: Priority
Instance Attribute Summary collapse
-
#priority ⇒ ::Google::Cloud::Build::V1::Build::Warning::Priority
The priority for this warning.
-
#text ⇒ ::String
Explanation of the warning generated.
Instance Attribute Details
#priority ⇒ ::Google::Cloud::Build::V1::Build::Warning::Priority
Returns The priority for this warning.
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 |
# File 'proto_docs/google/devtools/cloudbuild/v1/cloudbuild.rb', line 685 class Warning include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The relative importance of this warning. module Priority # Should not be used. PRIORITY_UNSPECIFIED = 0 # e.g. deprecation warnings and alternative feature highlights. INFO = 1 # e.g. automated detection of possible issues with the build. WARNING = 2 # e.g. alerts that a feature used in the build is pending removal ALERT = 3 end end |
#text ⇒ ::String
Returns Explanation of the warning generated.
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 |
# File 'proto_docs/google/devtools/cloudbuild/v1/cloudbuild.rb', line 685 class Warning include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The relative importance of this warning. module Priority # Should not be used. PRIORITY_UNSPECIFIED = 0 # e.g. deprecation warnings and alternative feature highlights. INFO = 1 # e.g. automated detection of possible issues with the build. WARNING = 2 # e.g. alerts that a feature used in the build is pending removal ALERT = 3 end end |