Class: Google::Cloud::Dataflow::V1beta3::InvalidTemplateParameters
- Inherits:
-
Object
- Object
- Google::Cloud::Dataflow::V1beta3::InvalidTemplateParameters
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/dataflow/v1beta3/templates.rb
Overview
Used in the error_details field of a google.rpc.Status message, this indicates problems with the template parameter.
Defined Under Namespace
Classes: ParameterViolation
Instance Attribute Summary collapse
-
#parameter_violations ⇒ ::Array<::Google::Cloud::Dataflow::V1beta3::InvalidTemplateParameters::ParameterViolation>
Describes all parameter violations in a template request.
Instance Attribute Details
#parameter_violations ⇒ ::Array<::Google::Cloud::Dataflow::V1beta3::InvalidTemplateParameters::ParameterViolation>
Returns Describes all parameter violations in a template request.
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 |
# File 'proto_docs/google/dataflow/v1beta3/templates.rb', line 625 class InvalidTemplateParameters include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A specific template-parameter violation. # @!attribute [rw] parameter # @return [::String] # The parameter that failed to validate. # @!attribute [rw] description # @return [::String] # A description of why the parameter failed to validate. class ParameterViolation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |