Class: Google::Cloud::AgentRegistry::V1::Interface
- Inherits:
-
Object
- Object
- Google::Cloud::AgentRegistry::V1::Interface
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/agentregistry/v1/properties.rb
Overview
Represents the connection details for an Agent or MCP Server.
Defined Under Namespace
Modules: ProtocolBinding
Instance Attribute Summary collapse
-
#protocol_binding ⇒ ::Google::Cloud::AgentRegistry::V1::Interface::ProtocolBinding
Required.
-
#url ⇒ ::String
Required.
Instance Attribute Details
#protocol_binding ⇒ ::Google::Cloud::AgentRegistry::V1::Interface::ProtocolBinding
Returns Required. The protocol binding of the interface.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'proto_docs/google/cloud/agentregistry/v1/properties.rb', line 31 class Interface include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The protocol binding of the interface. module ProtocolBinding # Unspecified transport protocol. PROTOCOL_BINDING_UNSPECIFIED = 0 # JSON-RPC specification. JSONRPC = 1 # gRPC specification. GRPC = 2 # HTTP+JSON specification. HTTP_JSON = 3 end end |
#url ⇒ ::String
Returns Required. The destination URL.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'proto_docs/google/cloud/agentregistry/v1/properties.rb', line 31 class Interface include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The protocol binding of the interface. module ProtocolBinding # Unspecified transport protocol. PROTOCOL_BINDING_UNSPECIFIED = 0 # JSON-RPC specification. JSONRPC = 1 # gRPC specification. GRPC = 2 # HTTP+JSON specification. HTTP_JSON = 3 end end |