proto_docs/google/protobuf/struct.rb in google-cloud-security_center-v1-0.1.0 vs proto_docs/google/protobuf/struct.rb in google-cloud-security_center-v1-0.1.1

- old
+ new

@@ -26,63 +26,63 @@ # object. The details of that representation are described together # with the proto support for the language. # # The JSON representation for `Struct` is JSON object. # @!attribute [rw] fields - # @return [Google::Protobuf::Map{String => Google::Protobuf::Value}] + # @return [::Google::Protobuf::Map{::String => ::Google::Protobuf::Value}] # Unordered map of dynamically typed values. class Struct - include Google::Protobuf::MessageExts - extend Google::Protobuf::MessageExts::ClassMethods + include ::Google::Protobuf::MessageExts + extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key - # @return [String] + # @return [::String] # @!attribute [rw] value - # @return [Google::Protobuf::Value] + # @return [::Google::Protobuf::Value] class FieldsEntry - include Google::Protobuf::MessageExts - extend Google::Protobuf::MessageExts::ClassMethods + include ::Google::Protobuf::MessageExts + extend ::Google::Protobuf::MessageExts::ClassMethods end end # `Value` represents a dynamically typed value which can be either # null, a number, a string, a boolean, a recursive struct value, or a # list of values. A producer of value is expected to set one of that # variants, absence of any variant indicates an error. # # The JSON representation for `Value` is JSON value. # @!attribute [rw] null_value - # @return [Google::Protobuf::NullValue] + # @return [::Google::Protobuf::NullValue] # Represents a null value. # @!attribute [rw] number_value - # @return [Float] + # @return [::Float] # Represents a double value. # @!attribute [rw] string_value - # @return [String] + # @return [::String] # Represents a string value. # @!attribute [rw] bool_value - # @return [Boolean] + # @return [::Boolean] # Represents a boolean value. # @!attribute [rw] struct_value - # @return [Google::Protobuf::Struct] + # @return [::Google::Protobuf::Struct] # Represents a structured value. # @!attribute [rw] list_value - # @return [Google::Protobuf::ListValue] + # @return [::Google::Protobuf::ListValue] # Represents a repeated `Value`. class Value - include Google::Protobuf::MessageExts - extend Google::Protobuf::MessageExts::ClassMethods + include ::Google::Protobuf::MessageExts + extend ::Google::Protobuf::MessageExts::ClassMethods end # `ListValue` is a wrapper around a repeated field of values. # # The JSON representation for `ListValue` is JSON array. # @!attribute [rw] values - # @return [Array<Google::Protobuf::Value>] + # @return [::Array<::Google::Protobuf::Value>] # Repeated field of dynamically typed values. class ListValue - include Google::Protobuf::MessageExts - extend Google::Protobuf::MessageExts::ClassMethods + include ::Google::Protobuf::MessageExts + extend ::Google::Protobuf::MessageExts::ClassMethods end # `NullValue` is a singleton enumeration to represent the null value for the # `Value` type union. #