# Licensed to Elasticsearch B.V. under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch B.V. licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
package Search::Elasticsearch::Client::6_0::Direct::XPack;
$Search::Elasticsearch::Client::6_0::Direct::XPack::VERSION = '7.715';
use Moo;
with 'Search::Elasticsearch::Client::6_0::Role::API';
with 'Search::Elasticsearch::Role::Client::Direct';
use namespace::clean;
sub _namespace {__PACKAGE__}
has 'graph' => ( is => 'lazy', init_arg => undef );
has 'license' => ( is => 'lazy', init_arg => undef );
has 'migration' => ( is => 'lazy', init_arg => undef );
has 'ml' => ( is => 'lazy', init_arg => undef );
has 'monitoring' => ( is => 'lazy', init_arg => undef );
has 'rollup' => ( is => 'lazy', init_arg => undef );
has 'security' => ( is => 'lazy', init_arg => undef );
has 'sql' => ( is => 'lazy', init_arg => undef );
has 'ssl' => ( is => 'lazy', init_arg => undef );
has 'watcher' => ( is => 'lazy', init_arg => undef );
sub _build_graph { shift->_build_namespace('Graph') }
sub _build_license { shift->_build_namespace('License') }
sub _build_migration { shift->_build_namespace('Migration') }
sub _build_ml { shift->_build_namespace('ML') }
sub _build_monitoring { shift->_build_namespace('Monitoring') }
sub _build_rollup { shift->_build_namespace('Rollup') }
sub _build_security { shift->_build_namespace('Security') }
sub _build_sql { shift->_build_namespace('SQL') }
sub _build_ssl { shift->_build_namespace('SSL') }
sub _build_watcher { shift->_build_namespace('Watcher') }
__PACKAGE__->_install_api('xpack');
1;
=pod
=encoding UTF-8
=head1 NAME
Search::Elasticsearch::Client::6_0::Direct::XPack - Plugin providing XPack APIs for Search::Elasticsearch v6.x
=head1 VERSION
version 7.715
=head1 SYNOPSIS
use Search::Elasticsearch();
my $es = Search::Elasticsearch->new(
nodes => \@nodes
);
$es->xpack->graph;
$es->xpack->license;
$es->xpack->security;
$es->xpack->watcher;
$es->xpack->rollup;
$es->xpack->sql;
$es->xpack->ml;
=head2 DESCRIPTION
This class extends the L<Search::Elasticsearch> client to add support
for the X-Pack commercial plugins for Elasticsearch 6.x.
It extends the L<Search::Elasticsearch> client with a C<graph>, C<license>, C<migration>, C<ml>,
C<security>, and C<watcher> namespace, to support the APIs for the X-Pack plugins:
Graph, License, Shield, and Watcher.
In other words, it can be used as follows:
use Search::Elasticsearch();
my $es = Search::Elasticsearch->new(
nodes => \@nodes
);
my $response = $es->xpack->watcher->start();
For details about the supported methods in each namespace, see:
=over
=item *
L<graph()/Search::Elasticsearch::Client::6_0::XPack::Graph>
=item *
L<license()/Search::Elasticsearch::Client::6_0::XPack::License>
=item *
L<shield()/Search::Elasticsearch::Client::6_0::XPack::Migration>
=item *
L<shield()/Search::Elasticsearch::Client::6_0::XPack::ML>
=item *
L<shield()/Search::Elasticsearch::Client::6_0::XPack::Rollup>
=item *
L<shield()/Search::Elasticsearch::Client::6_0::XPack::Security>
=item *
L<shield()/Search::Elasticsearch::Client::6_0::XPack::SQL>
=item *
L<watcher()/Search::Elasticsearch::Client::6_0::XPack::Watcher>
=back
=head1 AUTHOR
Enrico Zimuel <enrico.zimuel@elastic.co>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2021 by Elasticsearch BV.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004
=cut
__END__
# ABSTRACT: Plugin providing XPack APIs for Search::Elasticsearch v6.x