/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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.
*/
/*
* Do not modify this file. This file is generated from the dax-2017-04-19.normal.json service model.
*/
using System;
using System.Collections.Generic;
using Amazon.Runtime;
using Amazon.DAX.Model;
namespace Amazon.DAX
{
///
/// Interface for accessing DAX
///
/// DAX is a managed caching service engineered for Amazon DynamoDB. DAX dramatically
/// speeds up database reads by caching frequently-accessed data from DynamoDB, so applications
/// can access that data with sub-millisecond latency. You can create a DAX cluster easily,
/// using the AWS Management Console. With a few simple modifications to your code, your
/// application can begin taking advantage of the DAX cluster and realize significant
/// improvements in read performance.
///
public partial interface IAmazonDAX : IAmazonService, IDisposable
{
#region CreateCluster
///
/// Creates a DAX cluster. All nodes in the cluster run the same DAX caching software.
///
/// Container for the necessary parameters to execute the CreateCluster service method.
///
/// The response from the CreateCluster service method, as returned by DAX.
///
/// You already have a DAX cluster with the given identifier.
///
///
/// You have attempted to exceed the maximum number of DAX clusters for your AWS account.
///
///
/// There are not enough system resources to create the cluster you requested (or to resize
/// an already-existing cluster).
///
///
/// The requested DAX cluster is not in the available state.
///
///
/// Two or more incompatible parameters were specified.
///
///
/// One or more parameters in a parameter group are in an invalid state.
///
///
/// The value for a parameter is invalid.
///
///
/// The VPC network is in an invalid state.
///
///
/// You have attempted to exceed the maximum number of nodes for a DAX cluster.
///
///
/// You have attempted to exceed the maximum number of nodes for your AWS account.
///
///
/// The specified parameter group does not exist.
///
///
/// The specified service linked role (SLR) was not found.
///
///
/// You have reached the maximum number of x509 certificates that can be created for encrypted
/// clusters in a 30 day period. Contact AWS customer support to discuss options for continuing
/// to create encrypted clusters.
///
///
/// The requested subnet group name does not refer to an existing subnet group.
///
///
/// You have exceeded the maximum number of tags for this DAX cluster.
///
/// REST API Reference for CreateCluster Operation
CreateClusterResponse CreateCluster(CreateClusterRequest request);
///
/// Initiates the asynchronous execution of the CreateCluster operation.
///
///
/// Container for the necessary parameters to execute the CreateCluster operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndCreateCluster
/// operation.
/// REST API Reference for CreateCluster Operation
IAsyncResult BeginCreateCluster(CreateClusterRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the CreateCluster operation.
///
///
/// The IAsyncResult returned by the call to BeginCreateCluster.
///
/// Returns a CreateClusterResult from DAX.
/// REST API Reference for CreateCluster Operation
CreateClusterResponse EndCreateCluster(IAsyncResult asyncResult);
#endregion
#region CreateParameterGroup
///
/// Creates a new parameter group. A parameter group is a collection of parameters that
/// you apply to all of the nodes in a DAX cluster.
///
/// Container for the necessary parameters to execute the CreateParameterGroup service method.
///
/// The response from the CreateParameterGroup service method, as returned by DAX.
///
/// Two or more incompatible parameters were specified.
///
///
/// One or more parameters in a parameter group are in an invalid state.
///
///
/// The value for a parameter is invalid.
///
///
/// The specified parameter group already exists.
///
///
/// You have attempted to exceed the maximum number of parameter groups.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for CreateParameterGroup Operation
CreateParameterGroupResponse CreateParameterGroup(CreateParameterGroupRequest request);
///
/// Initiates the asynchronous execution of the CreateParameterGroup operation.
///
///
/// Container for the necessary parameters to execute the CreateParameterGroup operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndCreateParameterGroup
/// operation.
/// REST API Reference for CreateParameterGroup Operation
IAsyncResult BeginCreateParameterGroup(CreateParameterGroupRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the CreateParameterGroup operation.
///
///
/// The IAsyncResult returned by the call to BeginCreateParameterGroup.
///
/// Returns a CreateParameterGroupResult from DAX.
/// REST API Reference for CreateParameterGroup Operation
CreateParameterGroupResponse EndCreateParameterGroup(IAsyncResult asyncResult);
#endregion
#region CreateSubnetGroup
///
/// Creates a new subnet group.
///
/// Container for the necessary parameters to execute the CreateSubnetGroup service method.
///
/// The response from the CreateSubnetGroup service method, as returned by DAX.
///
/// An invalid subnet identifier was specified.
///
///
/// The specified service linked role (SLR) was not found.
///
///
/// The specified subnet group already exists.
///
///
/// The request cannot be processed because it would exceed the allowed number of subnets
/// in a subnet group.
///
///
/// The request cannot be processed because it would exceed the allowed number of subnets
/// in a subnet group.
///
/// REST API Reference for CreateSubnetGroup Operation
CreateSubnetGroupResponse CreateSubnetGroup(CreateSubnetGroupRequest request);
///
/// Initiates the asynchronous execution of the CreateSubnetGroup operation.
///
///
/// Container for the necessary parameters to execute the CreateSubnetGroup operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndCreateSubnetGroup
/// operation.
/// REST API Reference for CreateSubnetGroup Operation
IAsyncResult BeginCreateSubnetGroup(CreateSubnetGroupRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the CreateSubnetGroup operation.
///
///
/// The IAsyncResult returned by the call to BeginCreateSubnetGroup.
///
/// Returns a CreateSubnetGroupResult from DAX.
/// REST API Reference for CreateSubnetGroup Operation
CreateSubnetGroupResponse EndCreateSubnetGroup(IAsyncResult asyncResult);
#endregion
#region DecreaseReplicationFactor
///
/// Removes one or more nodes from a DAX cluster.
///
///
///
/// You cannot use DecreaseReplicationFactor
to remove the last node in a
/// DAX cluster. If you need to do this, use DeleteCluster
instead.
///
///
///
/// Container for the necessary parameters to execute the DecreaseReplicationFactor service method.
///
/// The response from the DecreaseReplicationFactor service method, as returned by DAX.
///
/// The requested cluster ID does not refer to an existing DAX cluster.
///
///
/// The requested DAX cluster is not in the available state.
///
///
/// Two or more incompatible parameters were specified.
///
///
/// The value for a parameter is invalid.
///
///
/// None of the nodes in the cluster have the given node ID.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for DecreaseReplicationFactor Operation
DecreaseReplicationFactorResponse DecreaseReplicationFactor(DecreaseReplicationFactorRequest request);
///
/// Initiates the asynchronous execution of the DecreaseReplicationFactor operation.
///
///
/// Container for the necessary parameters to execute the DecreaseReplicationFactor operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDecreaseReplicationFactor
/// operation.
/// REST API Reference for DecreaseReplicationFactor Operation
IAsyncResult BeginDecreaseReplicationFactor(DecreaseReplicationFactorRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the DecreaseReplicationFactor operation.
///
///
/// The IAsyncResult returned by the call to BeginDecreaseReplicationFactor.
///
/// Returns a DecreaseReplicationFactorResult from DAX.
/// REST API Reference for DecreaseReplicationFactor Operation
DecreaseReplicationFactorResponse EndDecreaseReplicationFactor(IAsyncResult asyncResult);
#endregion
#region DeleteCluster
///
/// Deletes a previously provisioned DAX cluster. DeleteCluster deletes all associated
/// nodes, node endpoints and the DAX cluster itself. When you receive a successful response
/// from this action, DAX immediately begins deleting the cluster; you cannot cancel or
/// revert this action.
///
/// Container for the necessary parameters to execute the DeleteCluster service method.
///
/// The response from the DeleteCluster service method, as returned by DAX.
///
/// The requested cluster ID does not refer to an existing DAX cluster.
///
///
/// The requested DAX cluster is not in the available state.
///
///
/// Two or more incompatible parameters were specified.
///
///
/// The value for a parameter is invalid.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for DeleteCluster Operation
DeleteClusterResponse DeleteCluster(DeleteClusterRequest request);
///
/// Initiates the asynchronous execution of the DeleteCluster operation.
///
///
/// Container for the necessary parameters to execute the DeleteCluster operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDeleteCluster
/// operation.
/// REST API Reference for DeleteCluster Operation
IAsyncResult BeginDeleteCluster(DeleteClusterRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the DeleteCluster operation.
///
///
/// The IAsyncResult returned by the call to BeginDeleteCluster.
///
/// Returns a DeleteClusterResult from DAX.
/// REST API Reference for DeleteCluster Operation
DeleteClusterResponse EndDeleteCluster(IAsyncResult asyncResult);
#endregion
#region DeleteParameterGroup
///
/// Deletes the specified parameter group. You cannot delete a parameter group if it is
/// associated with any DAX clusters.
///
/// Container for the necessary parameters to execute the DeleteParameterGroup service method.
///
/// The response from the DeleteParameterGroup service method, as returned by DAX.
///
/// Two or more incompatible parameters were specified.
///
///
/// One or more parameters in a parameter group are in an invalid state.
///
///
/// The value for a parameter is invalid.
///
///
/// The specified parameter group does not exist.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for DeleteParameterGroup Operation
DeleteParameterGroupResponse DeleteParameterGroup(DeleteParameterGroupRequest request);
///
/// Initiates the asynchronous execution of the DeleteParameterGroup operation.
///
///
/// Container for the necessary parameters to execute the DeleteParameterGroup operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDeleteParameterGroup
/// operation.
/// REST API Reference for DeleteParameterGroup Operation
IAsyncResult BeginDeleteParameterGroup(DeleteParameterGroupRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the DeleteParameterGroup operation.
///
///
/// The IAsyncResult returned by the call to BeginDeleteParameterGroup.
///
/// Returns a DeleteParameterGroupResult from DAX.
/// REST API Reference for DeleteParameterGroup Operation
DeleteParameterGroupResponse EndDeleteParameterGroup(IAsyncResult asyncResult);
#endregion
#region DeleteSubnetGroup
///
/// Deletes a subnet group.
///
///
///
/// You cannot delete a subnet group if it is associated with any DAX clusters.
///
///
///
/// Container for the necessary parameters to execute the DeleteSubnetGroup service method.
///
/// The response from the DeleteSubnetGroup service method, as returned by DAX.
///
/// The specified service linked role (SLR) was not found.
///
///
/// The specified subnet group is currently in use.
///
///
/// The requested subnet group name does not refer to an existing subnet group.
///
/// REST API Reference for DeleteSubnetGroup Operation
DeleteSubnetGroupResponse DeleteSubnetGroup(DeleteSubnetGroupRequest request);
///
/// Initiates the asynchronous execution of the DeleteSubnetGroup operation.
///
///
/// Container for the necessary parameters to execute the DeleteSubnetGroup operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDeleteSubnetGroup
/// operation.
/// REST API Reference for DeleteSubnetGroup Operation
IAsyncResult BeginDeleteSubnetGroup(DeleteSubnetGroupRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the DeleteSubnetGroup operation.
///
///
/// The IAsyncResult returned by the call to BeginDeleteSubnetGroup.
///
/// Returns a DeleteSubnetGroupResult from DAX.
/// REST API Reference for DeleteSubnetGroup Operation
DeleteSubnetGroupResponse EndDeleteSubnetGroup(IAsyncResult asyncResult);
#endregion
#region DescribeClusters
///
/// Returns information about all provisioned DAX clusters if no cluster identifier is
/// specified, or about a specific DAX cluster if a cluster identifier is supplied.
///
///
///
/// If the cluster is in the CREATING state, only cluster level information will be displayed
/// until all of the nodes are successfully provisioned.
///
///
///
/// If the cluster is in the DELETING state, only cluster level information will be displayed.
///
///
///
/// If nodes are currently being added to the DAX cluster, node endpoint information and
/// creation time for the additional nodes will not be displayed until they are completely
/// provisioned. When the DAX cluster state is available, the cluster is ready
/// for use.
///
///
///
/// If nodes are currently being removed from the DAX cluster, no endpoint information
/// for the removed nodes is displayed.
///
///
/// Container for the necessary parameters to execute the DescribeClusters service method.
///
/// The response from the DescribeClusters service method, as returned by DAX.
///
/// The requested cluster ID does not refer to an existing DAX cluster.
///
///
/// Two or more incompatible parameters were specified.
///
///
/// The value for a parameter is invalid.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for DescribeClusters Operation
DescribeClustersResponse DescribeClusters(DescribeClustersRequest request);
///
/// Initiates the asynchronous execution of the DescribeClusters operation.
///
///
/// Container for the necessary parameters to execute the DescribeClusters operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDescribeClusters
/// operation.
/// REST API Reference for DescribeClusters Operation
IAsyncResult BeginDescribeClusters(DescribeClustersRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the DescribeClusters operation.
///
///
/// The IAsyncResult returned by the call to BeginDescribeClusters.
///
/// Returns a DescribeClustersResult from DAX.
/// REST API Reference for DescribeClusters Operation
DescribeClustersResponse EndDescribeClusters(IAsyncResult asyncResult);
#endregion
#region DescribeDefaultParameters
///
/// Returns the default system parameter information for the DAX caching software.
///
/// Container for the necessary parameters to execute the DescribeDefaultParameters service method.
///
/// The response from the DescribeDefaultParameters service method, as returned by DAX.
///
/// Two or more incompatible parameters were specified.
///
///
/// The value for a parameter is invalid.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for DescribeDefaultParameters Operation
DescribeDefaultParametersResponse DescribeDefaultParameters(DescribeDefaultParametersRequest request);
///
/// Initiates the asynchronous execution of the DescribeDefaultParameters operation.
///
///
/// Container for the necessary parameters to execute the DescribeDefaultParameters operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDescribeDefaultParameters
/// operation.
/// REST API Reference for DescribeDefaultParameters Operation
IAsyncResult BeginDescribeDefaultParameters(DescribeDefaultParametersRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the DescribeDefaultParameters operation.
///
///
/// The IAsyncResult returned by the call to BeginDescribeDefaultParameters.
///
/// Returns a DescribeDefaultParametersResult from DAX.
/// REST API Reference for DescribeDefaultParameters Operation
DescribeDefaultParametersResponse EndDescribeDefaultParameters(IAsyncResult asyncResult);
#endregion
#region DescribeEvents
///
/// Returns events related to DAX clusters and parameter groups. You can obtain events
/// specific to a particular DAX cluster or parameter group by providing the name as a
/// parameter.
///
///
///
/// By default, only the events occurring within the last 24 hours are returned; however,
/// you can retrieve up to 14 days' worth of events if necessary.
///
///
/// Container for the necessary parameters to execute the DescribeEvents service method.
///
/// The response from the DescribeEvents service method, as returned by DAX.
///
/// Two or more incompatible parameters were specified.
///
///
/// The value for a parameter is invalid.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for DescribeEvents Operation
DescribeEventsResponse DescribeEvents(DescribeEventsRequest request);
///
/// Initiates the asynchronous execution of the DescribeEvents operation.
///
///
/// Container for the necessary parameters to execute the DescribeEvents operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDescribeEvents
/// operation.
/// REST API Reference for DescribeEvents Operation
IAsyncResult BeginDescribeEvents(DescribeEventsRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the DescribeEvents operation.
///
///
/// The IAsyncResult returned by the call to BeginDescribeEvents.
///
/// Returns a DescribeEventsResult from DAX.
/// REST API Reference for DescribeEvents Operation
DescribeEventsResponse EndDescribeEvents(IAsyncResult asyncResult);
#endregion
#region DescribeParameterGroups
///
/// Returns a list of parameter group descriptions. If a parameter group name is specified,
/// the list will contain only the descriptions for that group.
///
/// Container for the necessary parameters to execute the DescribeParameterGroups service method.
///
/// The response from the DescribeParameterGroups service method, as returned by DAX.
///
/// Two or more incompatible parameters were specified.
///
///
/// The value for a parameter is invalid.
///
///
/// The specified parameter group does not exist.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for DescribeParameterGroups Operation
DescribeParameterGroupsResponse DescribeParameterGroups(DescribeParameterGroupsRequest request);
///
/// Initiates the asynchronous execution of the DescribeParameterGroups operation.
///
///
/// Container for the necessary parameters to execute the DescribeParameterGroups operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDescribeParameterGroups
/// operation.
/// REST API Reference for DescribeParameterGroups Operation
IAsyncResult BeginDescribeParameterGroups(DescribeParameterGroupsRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the DescribeParameterGroups operation.
///
///
/// The IAsyncResult returned by the call to BeginDescribeParameterGroups.
///
/// Returns a DescribeParameterGroupsResult from DAX.
/// REST API Reference for DescribeParameterGroups Operation
DescribeParameterGroupsResponse EndDescribeParameterGroups(IAsyncResult asyncResult);
#endregion
#region DescribeParameters
///
/// Returns the detailed parameter list for a particular parameter group.
///
/// Container for the necessary parameters to execute the DescribeParameters service method.
///
/// The response from the DescribeParameters service method, as returned by DAX.
///
/// Two or more incompatible parameters were specified.
///
///
/// The value for a parameter is invalid.
///
///
/// The specified parameter group does not exist.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for DescribeParameters Operation
DescribeParametersResponse DescribeParameters(DescribeParametersRequest request);
///
/// Initiates the asynchronous execution of the DescribeParameters operation.
///
///
/// Container for the necessary parameters to execute the DescribeParameters operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDescribeParameters
/// operation.
/// REST API Reference for DescribeParameters Operation
IAsyncResult BeginDescribeParameters(DescribeParametersRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the DescribeParameters operation.
///
///
/// The IAsyncResult returned by the call to BeginDescribeParameters.
///
/// Returns a DescribeParametersResult from DAX.
/// REST API Reference for DescribeParameters Operation
DescribeParametersResponse EndDescribeParameters(IAsyncResult asyncResult);
#endregion
#region DescribeSubnetGroups
///
/// Returns a list of subnet group descriptions. If a subnet group name is specified,
/// the list will contain only the description of that group.
///
/// Container for the necessary parameters to execute the DescribeSubnetGroups service method.
///
/// The response from the DescribeSubnetGroups service method, as returned by DAX.
///
/// The specified service linked role (SLR) was not found.
///
///
/// The requested subnet group name does not refer to an existing subnet group.
///
/// REST API Reference for DescribeSubnetGroups Operation
DescribeSubnetGroupsResponse DescribeSubnetGroups(DescribeSubnetGroupsRequest request);
///
/// Initiates the asynchronous execution of the DescribeSubnetGroups operation.
///
///
/// Container for the necessary parameters to execute the DescribeSubnetGroups operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDescribeSubnetGroups
/// operation.
/// REST API Reference for DescribeSubnetGroups Operation
IAsyncResult BeginDescribeSubnetGroups(DescribeSubnetGroupsRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the DescribeSubnetGroups operation.
///
///
/// The IAsyncResult returned by the call to BeginDescribeSubnetGroups.
///
/// Returns a DescribeSubnetGroupsResult from DAX.
/// REST API Reference for DescribeSubnetGroups Operation
DescribeSubnetGroupsResponse EndDescribeSubnetGroups(IAsyncResult asyncResult);
#endregion
#region IncreaseReplicationFactor
///
/// Adds one or more nodes to a DAX cluster.
///
/// Container for the necessary parameters to execute the IncreaseReplicationFactor service method.
///
/// The response from the IncreaseReplicationFactor service method, as returned by DAX.
///
/// The requested cluster ID does not refer to an existing DAX cluster.
///
///
/// There are not enough system resources to create the cluster you requested (or to resize
/// an already-existing cluster).
///
///
/// The requested DAX cluster is not in the available state.
///
///
/// Two or more incompatible parameters were specified.
///
///
/// The value for a parameter is invalid.
///
///
/// The VPC network is in an invalid state.
///
///
/// You have attempted to exceed the maximum number of nodes for a DAX cluster.
///
///
/// You have attempted to exceed the maximum number of nodes for your AWS account.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for IncreaseReplicationFactor Operation
IncreaseReplicationFactorResponse IncreaseReplicationFactor(IncreaseReplicationFactorRequest request);
///
/// Initiates the asynchronous execution of the IncreaseReplicationFactor operation.
///
///
/// Container for the necessary parameters to execute the IncreaseReplicationFactor operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndIncreaseReplicationFactor
/// operation.
/// REST API Reference for IncreaseReplicationFactor Operation
IAsyncResult BeginIncreaseReplicationFactor(IncreaseReplicationFactorRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the IncreaseReplicationFactor operation.
///
///
/// The IAsyncResult returned by the call to BeginIncreaseReplicationFactor.
///
/// Returns a IncreaseReplicationFactorResult from DAX.
/// REST API Reference for IncreaseReplicationFactor Operation
IncreaseReplicationFactorResponse EndIncreaseReplicationFactor(IAsyncResult asyncResult);
#endregion
#region ListTags
///
/// List all of the tags for a DAX cluster. You can call ListTags
up to 10
/// times per second, per account.
///
/// Container for the necessary parameters to execute the ListTags service method.
///
/// The response from the ListTags service method, as returned by DAX.
///
/// The requested cluster ID does not refer to an existing DAX cluster.
///
///
/// The Amazon Resource Name (ARN) supplied in the request is not valid.
///
///
/// The requested DAX cluster is not in the available state.
///
///
/// Two or more incompatible parameters were specified.
///
///
/// The value for a parameter is invalid.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for ListTags Operation
ListTagsResponse ListTags(ListTagsRequest request);
///
/// Initiates the asynchronous execution of the ListTags operation.
///
///
/// Container for the necessary parameters to execute the ListTags operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListTags
/// operation.
/// REST API Reference for ListTags Operation
IAsyncResult BeginListTags(ListTagsRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the ListTags operation.
///
///
/// The IAsyncResult returned by the call to BeginListTags.
///
/// Returns a ListTagsResult from DAX.
/// REST API Reference for ListTags Operation
ListTagsResponse EndListTags(IAsyncResult asyncResult);
#endregion
#region RebootNode
///
/// Reboots a single node of a DAX cluster. The reboot action takes place as soon as possible.
/// During the reboot, the node status is set to REBOOTING.
///
///
///
/// RebootNode
restarts the DAX engine process and does not remove the contents
/// of the cache.
///
///
///
/// Container for the necessary parameters to execute the RebootNode service method.
///
/// The response from the RebootNode service method, as returned by DAX.
///
/// The requested cluster ID does not refer to an existing DAX cluster.
///
///
/// The requested DAX cluster is not in the available state.
///
///
/// Two or more incompatible parameters were specified.
///
///
/// The value for a parameter is invalid.
///
///
/// None of the nodes in the cluster have the given node ID.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for RebootNode Operation
RebootNodeResponse RebootNode(RebootNodeRequest request);
///
/// Initiates the asynchronous execution of the RebootNode operation.
///
///
/// Container for the necessary parameters to execute the RebootNode operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndRebootNode
/// operation.
/// REST API Reference for RebootNode Operation
IAsyncResult BeginRebootNode(RebootNodeRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the RebootNode operation.
///
///
/// The IAsyncResult returned by the call to BeginRebootNode.
///
/// Returns a RebootNodeResult from DAX.
/// REST API Reference for RebootNode Operation
RebootNodeResponse EndRebootNode(IAsyncResult asyncResult);
#endregion
#region TagResource
///
/// Associates a set of tags with a DAX resource. You can call TagResource
/// up to 5 times per second, per account.
///
/// Container for the necessary parameters to execute the TagResource service method.
///
/// The response from the TagResource service method, as returned by DAX.
///
/// The requested cluster ID does not refer to an existing DAX cluster.
///
///
/// The Amazon Resource Name (ARN) supplied in the request is not valid.
///
///
/// The requested DAX cluster is not in the available state.
///
///
/// Two or more incompatible parameters were specified.
///
///
/// The value for a parameter is invalid.
///
///
/// The specified service linked role (SLR) was not found.
///
///
/// You have exceeded the maximum number of tags for this DAX cluster.
///
/// REST API Reference for TagResource Operation
TagResourceResponse TagResource(TagResourceRequest request);
///
/// Initiates the asynchronous execution of the TagResource operation.
///
///
/// Container for the necessary parameters to execute the TagResource operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndTagResource
/// operation.
/// REST API Reference for TagResource Operation
IAsyncResult BeginTagResource(TagResourceRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the TagResource operation.
///
///
/// The IAsyncResult returned by the call to BeginTagResource.
///
/// Returns a TagResourceResult from DAX.
/// REST API Reference for TagResource Operation
TagResourceResponse EndTagResource(IAsyncResult asyncResult);
#endregion
#region UntagResource
///
/// Removes the association of tags from a DAX resource. You can call UntagResource
/// up to 5 times per second, per account.
///
/// Container for the necessary parameters to execute the UntagResource service method.
///
/// The response from the UntagResource service method, as returned by DAX.
///
/// The requested cluster ID does not refer to an existing DAX cluster.
///
///
/// The Amazon Resource Name (ARN) supplied in the request is not valid.
///
///
/// The requested DAX cluster is not in the available state.
///
///
/// Two or more incompatible parameters were specified.
///
///
/// The value for a parameter is invalid.
///
///
/// The specified service linked role (SLR) was not found.
///
///
/// The tag does not exist.
///
/// REST API Reference for UntagResource Operation
UntagResourceResponse UntagResource(UntagResourceRequest request);
///
/// Initiates the asynchronous execution of the UntagResource operation.
///
///
/// Container for the necessary parameters to execute the UntagResource operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndUntagResource
/// operation.
/// REST API Reference for UntagResource Operation
IAsyncResult BeginUntagResource(UntagResourceRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the UntagResource operation.
///
///
/// The IAsyncResult returned by the call to BeginUntagResource.
///
/// Returns a UntagResourceResult from DAX.
/// REST API Reference for UntagResource Operation
UntagResourceResponse EndUntagResource(IAsyncResult asyncResult);
#endregion
#region UpdateCluster
///
/// Modifies the settings for a DAX cluster. You can use this action to change one or
/// more cluster configuration parameters by specifying the parameters and the new values.
///
/// Container for the necessary parameters to execute the UpdateCluster service method.
///
/// The response from the UpdateCluster service method, as returned by DAX.
///
/// The requested cluster ID does not refer to an existing DAX cluster.
///
///
/// The requested DAX cluster is not in the available state.
///
///
/// Two or more incompatible parameters were specified.
///
///
/// One or more parameters in a parameter group are in an invalid state.
///
///
/// The value for a parameter is invalid.
///
///
/// The specified parameter group does not exist.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for UpdateCluster Operation
UpdateClusterResponse UpdateCluster(UpdateClusterRequest request);
///
/// Initiates the asynchronous execution of the UpdateCluster operation.
///
///
/// Container for the necessary parameters to execute the UpdateCluster operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndUpdateCluster
/// operation.
/// REST API Reference for UpdateCluster Operation
IAsyncResult BeginUpdateCluster(UpdateClusterRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the UpdateCluster operation.
///
///
/// The IAsyncResult returned by the call to BeginUpdateCluster.
///
/// Returns a UpdateClusterResult from DAX.
/// REST API Reference for UpdateCluster Operation
UpdateClusterResponse EndUpdateCluster(IAsyncResult asyncResult);
#endregion
#region UpdateParameterGroup
///
/// Modifies the parameters of a parameter group. You can modify up to 20 parameters in
/// a single request by submitting a list parameter name and value pairs.
///
/// Container for the necessary parameters to execute the UpdateParameterGroup service method.
///
/// The response from the UpdateParameterGroup service method, as returned by DAX.
///
/// Two or more incompatible parameters were specified.
///
///
/// One or more parameters in a parameter group are in an invalid state.
///
///
/// The value for a parameter is invalid.
///
///
/// The specified parameter group does not exist.
///
///
/// The specified service linked role (SLR) was not found.
///
/// REST API Reference for UpdateParameterGroup Operation
UpdateParameterGroupResponse UpdateParameterGroup(UpdateParameterGroupRequest request);
///
/// Initiates the asynchronous execution of the UpdateParameterGroup operation.
///
///
/// Container for the necessary parameters to execute the UpdateParameterGroup operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndUpdateParameterGroup
/// operation.
/// REST API Reference for UpdateParameterGroup Operation
IAsyncResult BeginUpdateParameterGroup(UpdateParameterGroupRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the UpdateParameterGroup operation.
///
///
/// The IAsyncResult returned by the call to BeginUpdateParameterGroup.
///
/// Returns a UpdateParameterGroupResult from DAX.
/// REST API Reference for UpdateParameterGroup Operation
UpdateParameterGroupResponse EndUpdateParameterGroup(IAsyncResult asyncResult);
#endregion
#region UpdateSubnetGroup
///
/// Modifies an existing subnet group.
///
/// Container for the necessary parameters to execute the UpdateSubnetGroup service method.
///
/// The response from the UpdateSubnetGroup service method, as returned by DAX.
///
/// An invalid subnet identifier was specified.
///
///
/// The specified service linked role (SLR) was not found.
///
///
/// The requested subnet group name does not refer to an existing subnet group.
///
///
/// The requested subnet is being used by another subnet group.
///
///
/// The request cannot be processed because it would exceed the allowed number of subnets
/// in a subnet group.
///
/// REST API Reference for UpdateSubnetGroup Operation
UpdateSubnetGroupResponse UpdateSubnetGroup(UpdateSubnetGroupRequest request);
///
/// Initiates the asynchronous execution of the UpdateSubnetGroup operation.
///
///
/// Container for the necessary parameters to execute the UpdateSubnetGroup operation on AmazonDAXClient.
/// An AsyncCallback delegate that is invoked when the operation completes.
/// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
/// procedure using the AsyncState property.
///
/// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndUpdateSubnetGroup
/// operation.
/// REST API Reference for UpdateSubnetGroup Operation
IAsyncResult BeginUpdateSubnetGroup(UpdateSubnetGroupRequest request, AsyncCallback callback, object state);
///
/// Finishes the asynchronous execution of the UpdateSubnetGroup operation.
///
///
/// The IAsyncResult returned by the call to BeginUpdateSubnetGroup.
///
/// Returns a UpdateSubnetGroupResult from DAX.
/// REST API Reference for UpdateSubnetGroup Operation
UpdateSubnetGroupResponse EndUpdateSubnetGroup(IAsyncResult asyncResult);
#endregion
}
}