AnyEvent-Riak

 view release on metacpan or  search on metacpan

lib/AnyEvent/Riak.pm  view on Meta::CPAN

=method auth

Authentication request

=over

=item user

required, string

=item password

required, string

=back

=method set_client_id

=over

=item client_id

lib/AnyEvent/Riak/PBC.pm  view on Meta::CPAN

            'RpbAuthReq',
            [
                [
                    Google::ProtocolBuffers::Constants::LABEL_REQUIRED(), 
                    Google::ProtocolBuffers::Constants::TYPE_BYTES(), 
                    'user', 1, undef
                ],
                [
                    Google::ProtocolBuffers::Constants::LABEL_REQUIRED(), 
                    Google::ProtocolBuffers::Constants::TYPE_BYTES(), 
                    'password', 2, undef
                ],

            ],
            { 'create_accessors' => 1,  }
        );
    }

    unless (RpbIndexResp->can('_pb_fields_list')) {
        Google::ProtocolBuffers->create_message(
            'RpbIndexResp',

pbc/riak.proto  view on Meta::CPAN

    // KV Datatypes
    optional bytes datatype = 26;

    // KV strong consistency
    optional bool consistent = 27;
}

// Authentication request
message RpbAuthReq {
    required bytes user = 1;
    required bytes password = 2;
}


// -------------------------------------------------------------------
//
// riak_kv.proto: Protocol buffers for riak KV
//
// Copyright (c) 2007-2010 Basho Technologies, Inc.  All Rights Reserved.
//
// This file is provided to you under the Apache License,



( run in 0.481 second using v1.01-cache-2.11-cpan-49f99fa48dc )