/* * 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 kafka-2018-11-14.normal.json service model. */ using System; using System.Threading; using System.Threading.Tasks; using System.Collections.Generic; using Amazon.Runtime; using Amazon.Kafka.Model; namespace Amazon.Kafka { /// <summary> /// Interface for accessing Kafka /// /// The operations for managing an Amazon MSK cluster. /// </summary> public partial interface IAmazonKafka : IAmazonService, IDisposable { /// <summary> /// Paginators for the service /// </summary> IKafkaPaginatorFactory Paginators { get; } #region BatchAssociateScramSecret /// <summary> /// Associates one or more Scram Secrets with an Amazon MSK cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the BatchAssociateScramSecret service method.</param> /// /// <returns>The response from the BatchAssociateScramSecret service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/BatchAssociateScramSecret">REST API Reference for BatchAssociateScramSecret Operation</seealso> BatchAssociateScramSecretResponse BatchAssociateScramSecret(BatchAssociateScramSecretRequest request); /// <summary> /// Associates one or more Scram Secrets with an Amazon MSK cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the BatchAssociateScramSecret service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the BatchAssociateScramSecret service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/BatchAssociateScramSecret">REST API Reference for BatchAssociateScramSecret Operation</seealso> Task<BatchAssociateScramSecretResponse> BatchAssociateScramSecretAsync(BatchAssociateScramSecretRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region BatchDisassociateScramSecret /// <summary> /// Disassociates one or more Scram Secrets from an Amazon MSK cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the BatchDisassociateScramSecret service method.</param> /// /// <returns>The response from the BatchDisassociateScramSecret service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/BatchDisassociateScramSecret">REST API Reference for BatchDisassociateScramSecret Operation</seealso> BatchDisassociateScramSecretResponse BatchDisassociateScramSecret(BatchDisassociateScramSecretRequest request); /// <summary> /// Disassociates one or more Scram Secrets from an Amazon MSK cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the BatchDisassociateScramSecret service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the BatchDisassociateScramSecret service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/BatchDisassociateScramSecret">REST API Reference for BatchDisassociateScramSecret Operation</seealso> Task<BatchDisassociateScramSecretResponse> BatchDisassociateScramSecretAsync(BatchDisassociateScramSecretRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateCluster /// <summary> /// Creates a new MSK cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateCluster service method.</param> /// /// <returns>The response from the CreateCluster service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ConflictException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateCluster">REST API Reference for CreateCluster Operation</seealso> CreateClusterResponse CreateCluster(CreateClusterRequest request); /// <summary> /// Creates a new MSK cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateCluster service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateCluster service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ConflictException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateCluster">REST API Reference for CreateCluster Operation</seealso> Task<CreateClusterResponse> CreateClusterAsync(CreateClusterRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateClusterV2 /// <summary> /// Creates a new MSK cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateClusterV2 service method.</param> /// /// <returns>The response from the CreateClusterV2 service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ConflictException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateClusterV2">REST API Reference for CreateClusterV2 Operation</seealso> CreateClusterV2Response CreateClusterV2(CreateClusterV2Request request); /// <summary> /// Creates a new MSK cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateClusterV2 service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateClusterV2 service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ConflictException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateClusterV2">REST API Reference for CreateClusterV2 Operation</seealso> Task<CreateClusterV2Response> CreateClusterV2Async(CreateClusterV2Request request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateConfiguration /// <summary> /// Creates a new MSK configuration. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateConfiguration service method.</param> /// /// <returns>The response from the CreateConfiguration service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ConflictException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateConfiguration">REST API Reference for CreateConfiguration Operation</seealso> CreateConfigurationResponse CreateConfiguration(CreateConfigurationRequest request); /// <summary> /// Creates a new MSK configuration. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateConfiguration service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ConflictException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateConfiguration">REST API Reference for CreateConfiguration Operation</seealso> Task<CreateConfigurationResponse> CreateConfigurationAsync(CreateConfigurationRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateVpcConnection /// <summary> /// Creates a new MSK VPC connection. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateVpcConnection service method.</param> /// /// <returns>The response from the CreateVpcConnection service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateVpcConnection">REST API Reference for CreateVpcConnection Operation</seealso> CreateVpcConnectionResponse CreateVpcConnection(CreateVpcConnectionRequest request); /// <summary> /// Creates a new MSK VPC connection. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateVpcConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateVpcConnection service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateVpcConnection">REST API Reference for CreateVpcConnection Operation</seealso> Task<CreateVpcConnectionResponse> CreateVpcConnectionAsync(CreateVpcConnectionRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteCluster /// <summary> /// Deletes the MSK cluster specified by the Amazon Resource Name (ARN) in the request. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteCluster service method.</param> /// /// <returns>The response from the DeleteCluster service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteCluster">REST API Reference for DeleteCluster Operation</seealso> DeleteClusterResponse DeleteCluster(DeleteClusterRequest request); /// <summary> /// Deletes the MSK cluster specified by the Amazon Resource Name (ARN) in the request. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteCluster service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteCluster service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteCluster">REST API Reference for DeleteCluster Operation</seealso> Task<DeleteClusterResponse> DeleteClusterAsync(DeleteClusterRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteClusterPolicy /// <summary> /// Deletes the MSK cluster policy specified by the Amazon Resource Name (ARN) in the /// request. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteClusterPolicy service method.</param> /// /// <returns>The response from the DeleteClusterPolicy service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteClusterPolicy">REST API Reference for DeleteClusterPolicy Operation</seealso> DeleteClusterPolicyResponse DeleteClusterPolicy(DeleteClusterPolicyRequest request); /// <summary> /// Deletes the MSK cluster policy specified by the Amazon Resource Name (ARN) in the /// request. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteClusterPolicy service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteClusterPolicy service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteClusterPolicy">REST API Reference for DeleteClusterPolicy Operation</seealso> Task<DeleteClusterPolicyResponse> DeleteClusterPolicyAsync(DeleteClusterPolicyRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteConfiguration /// <summary> /// Deletes an MSK Configuration. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteConfiguration service method.</param> /// /// <returns>The response from the DeleteConfiguration service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteConfiguration">REST API Reference for DeleteConfiguration Operation</seealso> DeleteConfigurationResponse DeleteConfiguration(DeleteConfigurationRequest request); /// <summary> /// Deletes an MSK Configuration. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteConfiguration service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteConfiguration">REST API Reference for DeleteConfiguration Operation</seealso> Task<DeleteConfigurationResponse> DeleteConfigurationAsync(DeleteConfigurationRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteVpcConnection /// <summary> /// Deletes a MSK VPC connection. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteVpcConnection service method.</param> /// /// <returns>The response from the DeleteVpcConnection service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteVpcConnection">REST API Reference for DeleteVpcConnection Operation</seealso> DeleteVpcConnectionResponse DeleteVpcConnection(DeleteVpcConnectionRequest request); /// <summary> /// Deletes a MSK VPC connection. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteVpcConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteVpcConnection service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteVpcConnection">REST API Reference for DeleteVpcConnection Operation</seealso> Task<DeleteVpcConnectionResponse> DeleteVpcConnectionAsync(DeleteVpcConnectionRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeCluster /// <summary> /// Returns a description of the MSK cluster whose Amazon Resource Name (ARN) is specified /// in the request. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeCluster service method.</param> /// /// <returns>The response from the DescribeCluster service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeCluster">REST API Reference for DescribeCluster Operation</seealso> DescribeClusterResponse DescribeCluster(DescribeClusterRequest request); /// <summary> /// Returns a description of the MSK cluster whose Amazon Resource Name (ARN) is specified /// in the request. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeCluster service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeCluster service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeCluster">REST API Reference for DescribeCluster Operation</seealso> Task<DescribeClusterResponse> DescribeClusterAsync(DescribeClusterRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeClusterOperation /// <summary> /// Returns a description of the cluster operation specified by the ARN. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeClusterOperation service method.</param> /// /// <returns>The response from the DescribeClusterOperation service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterOperation">REST API Reference for DescribeClusterOperation Operation</seealso> DescribeClusterOperationResponse DescribeClusterOperation(DescribeClusterOperationRequest request); /// <summary> /// Returns a description of the cluster operation specified by the ARN. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeClusterOperation service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeClusterOperation service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterOperation">REST API Reference for DescribeClusterOperation Operation</seealso> Task<DescribeClusterOperationResponse> DescribeClusterOperationAsync(DescribeClusterOperationRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeClusterOperationV2 /// <summary> /// Returns a description of the cluster operation specified by the ARN. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeClusterOperationV2 service method.</param> /// /// <returns>The response from the DescribeClusterOperationV2 service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterOperationV2">REST API Reference for DescribeClusterOperationV2 Operation</seealso> DescribeClusterOperationV2Response DescribeClusterOperationV2(DescribeClusterOperationV2Request request); /// <summary> /// Returns a description of the cluster operation specified by the ARN. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeClusterOperationV2 service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeClusterOperationV2 service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterOperationV2">REST API Reference for DescribeClusterOperationV2 Operation</seealso> Task<DescribeClusterOperationV2Response> DescribeClusterOperationV2Async(DescribeClusterOperationV2Request request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeClusterV2 /// <summary> /// Returns a description of the MSK cluster whose Amazon Resource Name (ARN) is specified /// in the request. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeClusterV2 service method.</param> /// /// <returns>The response from the DescribeClusterV2 service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterV2">REST API Reference for DescribeClusterV2 Operation</seealso> DescribeClusterV2Response DescribeClusterV2(DescribeClusterV2Request request); /// <summary> /// Returns a description of the MSK cluster whose Amazon Resource Name (ARN) is specified /// in the request. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeClusterV2 service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeClusterV2 service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterV2">REST API Reference for DescribeClusterV2 Operation</seealso> Task<DescribeClusterV2Response> DescribeClusterV2Async(DescribeClusterV2Request request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeConfiguration /// <summary> /// Returns a description of this MSK configuration. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeConfiguration service method.</param> /// /// <returns>The response from the DescribeConfiguration service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeConfiguration">REST API Reference for DescribeConfiguration Operation</seealso> DescribeConfigurationResponse DescribeConfiguration(DescribeConfigurationRequest request); /// <summary> /// Returns a description of this MSK configuration. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeConfiguration service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeConfiguration">REST API Reference for DescribeConfiguration Operation</seealso> Task<DescribeConfigurationResponse> DescribeConfigurationAsync(DescribeConfigurationRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeConfigurationRevision /// <summary> /// Returns a description of this revision of the configuration. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeConfigurationRevision service method.</param> /// /// <returns>The response from the DescribeConfigurationRevision service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeConfigurationRevision">REST API Reference for DescribeConfigurationRevision Operation</seealso> DescribeConfigurationRevisionResponse DescribeConfigurationRevision(DescribeConfigurationRevisionRequest request); /// <summary> /// Returns a description of this revision of the configuration. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeConfigurationRevision service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeConfigurationRevision service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeConfigurationRevision">REST API Reference for DescribeConfigurationRevision Operation</seealso> Task<DescribeConfigurationRevisionResponse> DescribeConfigurationRevisionAsync(DescribeConfigurationRevisionRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeVpcConnection /// <summary> /// Returns a description of this MSK VPC connection. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeVpcConnection service method.</param> /// /// <returns>The response from the DescribeVpcConnection service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeVpcConnection">REST API Reference for DescribeVpcConnection Operation</seealso> DescribeVpcConnectionResponse DescribeVpcConnection(DescribeVpcConnectionRequest request); /// <summary> /// Returns a description of this MSK VPC connection. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeVpcConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeVpcConnection service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeVpcConnection">REST API Reference for DescribeVpcConnection Operation</seealso> Task<DescribeVpcConnectionResponse> DescribeVpcConnectionAsync(DescribeVpcConnectionRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region GetBootstrapBrokers /// <summary> /// A list of brokers that a client application can use to bootstrap. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetBootstrapBrokers service method.</param> /// /// <returns>The response from the GetBootstrapBrokers service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ConflictException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetBootstrapBrokers">REST API Reference for GetBootstrapBrokers Operation</seealso> GetBootstrapBrokersResponse GetBootstrapBrokers(GetBootstrapBrokersRequest request); /// <summary> /// A list of brokers that a client application can use to bootstrap. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetBootstrapBrokers service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the GetBootstrapBrokers service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ConflictException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetBootstrapBrokers">REST API Reference for GetBootstrapBrokers Operation</seealso> Task<GetBootstrapBrokersResponse> GetBootstrapBrokersAsync(GetBootstrapBrokersRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region GetClusterPolicy /// <summary> /// Get the MSK cluster policy specified by the Amazon Resource Name (ARN) in the request. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetClusterPolicy service method.</param> /// /// <returns>The response from the GetClusterPolicy service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetClusterPolicy">REST API Reference for GetClusterPolicy Operation</seealso> GetClusterPolicyResponse GetClusterPolicy(GetClusterPolicyRequest request); /// <summary> /// Get the MSK cluster policy specified by the Amazon Resource Name (ARN) in the request. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetClusterPolicy service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the GetClusterPolicy service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetClusterPolicy">REST API Reference for GetClusterPolicy Operation</seealso> Task<GetClusterPolicyResponse> GetClusterPolicyAsync(GetClusterPolicyRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region GetCompatibleKafkaVersions /// <summary> /// Gets the Apache Kafka versions to which you can update the MSK cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetCompatibleKafkaVersions service method.</param> /// /// <returns>The response from the GetCompatibleKafkaVersions service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetCompatibleKafkaVersions">REST API Reference for GetCompatibleKafkaVersions Operation</seealso> GetCompatibleKafkaVersionsResponse GetCompatibleKafkaVersions(GetCompatibleKafkaVersionsRequest request); /// <summary> /// Gets the Apache Kafka versions to which you can update the MSK cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetCompatibleKafkaVersions service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the GetCompatibleKafkaVersions service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetCompatibleKafkaVersions">REST API Reference for GetCompatibleKafkaVersions Operation</seealso> Task<GetCompatibleKafkaVersionsResponse> GetCompatibleKafkaVersionsAsync(GetCompatibleKafkaVersionsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListClientVpcConnections /// <summary> /// Returns a list of all the VPC connections in this Region. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListClientVpcConnections service method.</param> /// /// <returns>The response from the ListClientVpcConnections service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClientVpcConnections">REST API Reference for ListClientVpcConnections Operation</seealso> ListClientVpcConnectionsResponse ListClientVpcConnections(ListClientVpcConnectionsRequest request); /// <summary> /// Returns a list of all the VPC connections in this Region. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListClientVpcConnections service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListClientVpcConnections service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClientVpcConnections">REST API Reference for ListClientVpcConnections Operation</seealso> Task<ListClientVpcConnectionsResponse> ListClientVpcConnectionsAsync(ListClientVpcConnectionsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListClusterOperations /// <summary> /// Returns a list of all the operations that have been performed on the specified MSK /// cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListClusterOperations service method.</param> /// /// <returns>The response from the ListClusterOperations service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusterOperations">REST API Reference for ListClusterOperations Operation</seealso> ListClusterOperationsResponse ListClusterOperations(ListClusterOperationsRequest request); /// <summary> /// Returns a list of all the operations that have been performed on the specified MSK /// cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListClusterOperations service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListClusterOperations service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusterOperations">REST API Reference for ListClusterOperations Operation</seealso> Task<ListClusterOperationsResponse> ListClusterOperationsAsync(ListClusterOperationsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListClusterOperationsV2 /// <summary> /// Returns a list of all the operations that have been performed on the specified MSK /// cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListClusterOperationsV2 service method.</param> /// /// <returns>The response from the ListClusterOperationsV2 service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusterOperationsV2">REST API Reference for ListClusterOperationsV2 Operation</seealso> ListClusterOperationsV2Response ListClusterOperationsV2(ListClusterOperationsV2Request request); /// <summary> /// Returns a list of all the operations that have been performed on the specified MSK /// cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListClusterOperationsV2 service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListClusterOperationsV2 service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusterOperationsV2">REST API Reference for ListClusterOperationsV2 Operation</seealso> Task<ListClusterOperationsV2Response> ListClusterOperationsV2Async(ListClusterOperationsV2Request request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListClusters /// <summary> /// Returns a list of all the MSK clusters in the current Region. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListClusters service method.</param> /// /// <returns>The response from the ListClusters service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusters">REST API Reference for ListClusters Operation</seealso> ListClustersResponse ListClusters(ListClustersRequest request); /// <summary> /// Returns a list of all the MSK clusters in the current Region. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListClusters service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListClusters service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusters">REST API Reference for ListClusters Operation</seealso> Task<ListClustersResponse> ListClustersAsync(ListClustersRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListClustersV2 /// <summary> /// Returns a list of all the MSK clusters in the current Region. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListClustersV2 service method.</param> /// /// <returns>The response from the ListClustersV2 service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClustersV2">REST API Reference for ListClustersV2 Operation</seealso> ListClustersV2Response ListClustersV2(ListClustersV2Request request); /// <summary> /// Returns a list of all the MSK clusters in the current Region. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListClustersV2 service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListClustersV2 service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClustersV2">REST API Reference for ListClustersV2 Operation</seealso> Task<ListClustersV2Response> ListClustersV2Async(ListClustersV2Request request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListConfigurationRevisions /// <summary> /// Returns a list of all the MSK configurations in this Region. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListConfigurationRevisions service method.</param> /// /// <returns>The response from the ListConfigurationRevisions service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListConfigurationRevisions">REST API Reference for ListConfigurationRevisions Operation</seealso> ListConfigurationRevisionsResponse ListConfigurationRevisions(ListConfigurationRevisionsRequest request); /// <summary> /// Returns a list of all the MSK configurations in this Region. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListConfigurationRevisions service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListConfigurationRevisions service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListConfigurationRevisions">REST API Reference for ListConfigurationRevisions Operation</seealso> Task<ListConfigurationRevisionsResponse> ListConfigurationRevisionsAsync(ListConfigurationRevisionsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListConfigurations /// <summary> /// Returns a list of all the MSK configurations in this Region. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListConfigurations service method.</param> /// /// <returns>The response from the ListConfigurations service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListConfigurations">REST API Reference for ListConfigurations Operation</seealso> ListConfigurationsResponse ListConfigurations(ListConfigurationsRequest request); /// <summary> /// Returns a list of all the MSK configurations in this Region. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListConfigurations service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListConfigurations service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListConfigurations">REST API Reference for ListConfigurations Operation</seealso> Task<ListConfigurationsResponse> ListConfigurationsAsync(ListConfigurationsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListKafkaVersions /// <summary> /// Returns a list of Apache Kafka versions. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListKafkaVersions service method.</param> /// /// <returns>The response from the ListKafkaVersions service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListKafkaVersions">REST API Reference for ListKafkaVersions Operation</seealso> ListKafkaVersionsResponse ListKafkaVersions(ListKafkaVersionsRequest request); /// <summary> /// Returns a list of Apache Kafka versions. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListKafkaVersions service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListKafkaVersions service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListKafkaVersions">REST API Reference for ListKafkaVersions Operation</seealso> Task<ListKafkaVersionsResponse> ListKafkaVersionsAsync(ListKafkaVersionsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListNodes /// <summary> /// Returns a list of the broker nodes in the cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListNodes service method.</param> /// /// <returns>The response from the ListNodes service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListNodes">REST API Reference for ListNodes Operation</seealso> ListNodesResponse ListNodes(ListNodesRequest request); /// <summary> /// Returns a list of the broker nodes in the cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListNodes service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListNodes service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListNodes">REST API Reference for ListNodes Operation</seealso> Task<ListNodesResponse> ListNodesAsync(ListNodesRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListScramSecrets /// <summary> /// Returns a list of the Scram Secrets associated with an Amazon MSK cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListScramSecrets service method.</param> /// /// <returns>The response from the ListScramSecrets service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListScramSecrets">REST API Reference for ListScramSecrets Operation</seealso> ListScramSecretsResponse ListScramSecrets(ListScramSecretsRequest request); /// <summary> /// Returns a list of the Scram Secrets associated with an Amazon MSK cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListScramSecrets service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListScramSecrets service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListScramSecrets">REST API Reference for ListScramSecrets Operation</seealso> Task<ListScramSecretsResponse> ListScramSecretsAsync(ListScramSecretsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListTagsForResource /// <summary> /// Returns a list of the tags associated with the specified resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListTagsForResource service method.</param> /// /// <returns>The response from the ListTagsForResource service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListTagsForResource">REST API Reference for ListTagsForResource Operation</seealso> ListTagsForResourceResponse ListTagsForResource(ListTagsForResourceRequest request); /// <summary> /// Returns a list of the tags associated with the specified resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListTagsForResource service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListTagsForResource service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListTagsForResource">REST API Reference for ListTagsForResource Operation</seealso> Task<ListTagsForResourceResponse> ListTagsForResourceAsync(ListTagsForResourceRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListVpcConnections /// <summary> /// Returns a list of all the VPC connections in this Region. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListVpcConnections service method.</param> /// /// <returns>The response from the ListVpcConnections service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListVpcConnections">REST API Reference for ListVpcConnections Operation</seealso> ListVpcConnectionsResponse ListVpcConnections(ListVpcConnectionsRequest request); /// <summary> /// Returns a list of all the VPC connections in this Region. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListVpcConnections service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListVpcConnections service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListVpcConnections">REST API Reference for ListVpcConnections Operation</seealso> Task<ListVpcConnectionsResponse> ListVpcConnectionsAsync(ListVpcConnectionsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region PutClusterPolicy /// <summary> /// Creates or updates the MSK cluster policy specified by the cluster Amazon Resource /// Name (ARN) in the request. /// </summary> /// <param name="request">Container for the necessary parameters to execute the PutClusterPolicy service method.</param> /// /// <returns>The response from the PutClusterPolicy service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/PutClusterPolicy">REST API Reference for PutClusterPolicy Operation</seealso> PutClusterPolicyResponse PutClusterPolicy(PutClusterPolicyRequest request); /// <summary> /// Creates or updates the MSK cluster policy specified by the cluster Amazon Resource /// Name (ARN) in the request. /// </summary> /// <param name="request">Container for the necessary parameters to execute the PutClusterPolicy service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the PutClusterPolicy service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/PutClusterPolicy">REST API Reference for PutClusterPolicy Operation</seealso> Task<PutClusterPolicyResponse> PutClusterPolicyAsync(PutClusterPolicyRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region RebootBroker /// <summary> /// Reboots brokers. /// </summary> /// <param name="request">Container for the necessary parameters to execute the RebootBroker service method.</param> /// /// <returns>The response from the RebootBroker service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/RebootBroker">REST API Reference for RebootBroker Operation</seealso> RebootBrokerResponse RebootBroker(RebootBrokerRequest request); /// <summary> /// Reboots brokers. /// </summary> /// <param name="request">Container for the necessary parameters to execute the RebootBroker service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the RebootBroker service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/RebootBroker">REST API Reference for RebootBroker Operation</seealso> Task<RebootBrokerResponse> RebootBrokerAsync(RebootBrokerRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region RejectClientVpcConnection /// <summary> /// Returns empty response. /// </summary> /// <param name="request">Container for the necessary parameters to execute the RejectClientVpcConnection service method.</param> /// /// <returns>The response from the RejectClientVpcConnection service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/RejectClientVpcConnection">REST API Reference for RejectClientVpcConnection Operation</seealso> RejectClientVpcConnectionResponse RejectClientVpcConnection(RejectClientVpcConnectionRequest request); /// <summary> /// Returns empty response. /// </summary> /// <param name="request">Container for the necessary parameters to execute the RejectClientVpcConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the RejectClientVpcConnection service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/RejectClientVpcConnection">REST API Reference for RejectClientVpcConnection Operation</seealso> Task<RejectClientVpcConnectionResponse> RejectClientVpcConnectionAsync(RejectClientVpcConnectionRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region TagResource /// <summary> /// Adds tags to the specified MSK resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the TagResource service method.</param> /// /// <returns>The response from the TagResource service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/TagResource">REST API Reference for TagResource Operation</seealso> TagResourceResponse TagResource(TagResourceRequest request); /// <summary> /// Adds tags to the specified MSK resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the TagResource service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the TagResource service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/TagResource">REST API Reference for TagResource Operation</seealso> Task<TagResourceResponse> TagResourceAsync(TagResourceRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UntagResource /// <summary> /// Removes the tags associated with the keys that are provided in the query. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UntagResource service method.</param> /// /// <returns>The response from the UntagResource service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UntagResource">REST API Reference for UntagResource Operation</seealso> UntagResourceResponse UntagResource(UntagResourceRequest request); /// <summary> /// Removes the tags associated with the keys that are provided in the query. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UntagResource service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UntagResource service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UntagResource">REST API Reference for UntagResource Operation</seealso> Task<UntagResourceResponse> UntagResourceAsync(UntagResourceRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateBrokerCount /// <summary> /// Updates the number of broker nodes in the cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateBrokerCount service method.</param> /// /// <returns>The response from the UpdateBrokerCount service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateBrokerCount">REST API Reference for UpdateBrokerCount Operation</seealso> UpdateBrokerCountResponse UpdateBrokerCount(UpdateBrokerCountRequest request); /// <summary> /// Updates the number of broker nodes in the cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateBrokerCount service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateBrokerCount service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateBrokerCount">REST API Reference for UpdateBrokerCount Operation</seealso> Task<UpdateBrokerCountResponse> UpdateBrokerCountAsync(UpdateBrokerCountRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateBrokerStorage /// <summary> /// Updates the EBS storage associated with MSK brokers. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateBrokerStorage service method.</param> /// /// <returns>The response from the UpdateBrokerStorage service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateBrokerStorage">REST API Reference for UpdateBrokerStorage Operation</seealso> UpdateBrokerStorageResponse UpdateBrokerStorage(UpdateBrokerStorageRequest request); /// <summary> /// Updates the EBS storage associated with MSK brokers. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateBrokerStorage service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateBrokerStorage service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateBrokerStorage">REST API Reference for UpdateBrokerStorage Operation</seealso> Task<UpdateBrokerStorageResponse> UpdateBrokerStorageAsync(UpdateBrokerStorageRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateBrokerType /// <summary> /// Updates EC2 instance type. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateBrokerType service method.</param> /// /// <returns>The response from the UpdateBrokerType service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateBrokerType">REST API Reference for UpdateBrokerType Operation</seealso> UpdateBrokerTypeResponse UpdateBrokerType(UpdateBrokerTypeRequest request); /// <summary> /// Updates EC2 instance type. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateBrokerType service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateBrokerType service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateBrokerType">REST API Reference for UpdateBrokerType Operation</seealso> Task<UpdateBrokerTypeResponse> UpdateBrokerTypeAsync(UpdateBrokerTypeRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateClusterConfiguration /// <summary> /// Updates the cluster with the configuration that is specified in the request body. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateClusterConfiguration service method.</param> /// /// <returns>The response from the UpdateClusterConfiguration service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateClusterConfiguration">REST API Reference for UpdateClusterConfiguration Operation</seealso> UpdateClusterConfigurationResponse UpdateClusterConfiguration(UpdateClusterConfigurationRequest request); /// <summary> /// Updates the cluster with the configuration that is specified in the request body. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateClusterConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateClusterConfiguration service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateClusterConfiguration">REST API Reference for UpdateClusterConfiguration Operation</seealso> Task<UpdateClusterConfigurationResponse> UpdateClusterConfigurationAsync(UpdateClusterConfigurationRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateClusterKafkaVersion /// <summary> /// Updates the Apache Kafka version for the cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateClusterKafkaVersion service method.</param> /// /// <returns>The response from the UpdateClusterKafkaVersion service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateClusterKafkaVersion">REST API Reference for UpdateClusterKafkaVersion Operation</seealso> UpdateClusterKafkaVersionResponse UpdateClusterKafkaVersion(UpdateClusterKafkaVersionRequest request); /// <summary> /// Updates the Apache Kafka version for the cluster. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateClusterKafkaVersion service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateClusterKafkaVersion service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateClusterKafkaVersion">REST API Reference for UpdateClusterKafkaVersion Operation</seealso> Task<UpdateClusterKafkaVersionResponse> UpdateClusterKafkaVersionAsync(UpdateClusterKafkaVersionRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateConfiguration /// <summary> /// Updates an MSK configuration. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateConfiguration service method.</param> /// /// <returns>The response from the UpdateConfiguration service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateConfiguration">REST API Reference for UpdateConfiguration Operation</seealso> UpdateConfigurationResponse UpdateConfiguration(UpdateConfigurationRequest request); /// <summary> /// Updates an MSK configuration. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateConfiguration service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateConfiguration">REST API Reference for UpdateConfiguration Operation</seealso> Task<UpdateConfigurationResponse> UpdateConfigurationAsync(UpdateConfigurationRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateConnectivity /// <summary> /// Updates the cluster's connectivity configuration. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateConnectivity service method.</param> /// /// <returns>The response from the UpdateConnectivity service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateConnectivity">REST API Reference for UpdateConnectivity Operation</seealso> UpdateConnectivityResponse UpdateConnectivity(UpdateConnectivityRequest request); /// <summary> /// Updates the cluster's connectivity configuration. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateConnectivity service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateConnectivity service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateConnectivity">REST API Reference for UpdateConnectivity Operation</seealso> Task<UpdateConnectivityResponse> UpdateConnectivityAsync(UpdateConnectivityRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateMonitoring /// <summary> /// Updates the monitoring settings for the cluster. You can use this operation to specify /// which Apache Kafka metrics you want Amazon MSK to send to Amazon CloudWatch. You can /// also specify settings for open monitoring with Prometheus. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateMonitoring service method.</param> /// /// <returns>The response from the UpdateMonitoring service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateMonitoring">REST API Reference for UpdateMonitoring Operation</seealso> UpdateMonitoringResponse UpdateMonitoring(UpdateMonitoringRequest request); /// <summary> /// Updates the monitoring settings for the cluster. You can use this operation to specify /// which Apache Kafka metrics you want Amazon MSK to send to Amazon CloudWatch. You can /// also specify settings for open monitoring with Prometheus. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateMonitoring service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateMonitoring service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateMonitoring">REST API Reference for UpdateMonitoring Operation</seealso> Task<UpdateMonitoringResponse> UpdateMonitoringAsync(UpdateMonitoringRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateSecurity /// <summary> /// Updates the security settings for the cluster. You can use this operation to specify /// encryption and authentication on existing clusters. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateSecurity service method.</param> /// /// <returns>The response from the UpdateSecurity service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateSecurity">REST API Reference for UpdateSecurity Operation</seealso> UpdateSecurityResponse UpdateSecurity(UpdateSecurityRequest request); /// <summary> /// Updates the security settings for the cluster. You can use this operation to specify /// encryption and authentication on existing clusters. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateSecurity service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateSecurity service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateSecurity">REST API Reference for UpdateSecurity Operation</seealso> Task<UpdateSecurityResponse> UpdateSecurityAsync(UpdateSecurityRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateStorage /// <summary> /// Updates cluster broker volume size (or) sets cluster storage mode to TIERED. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateStorage service method.</param> /// /// <returns>The response from the UpdateStorage service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateStorage">REST API Reference for UpdateStorage Operation</seealso> UpdateStorageResponse UpdateStorage(UpdateStorageRequest request); /// <summary> /// Updates cluster broker volume size (or) sets cluster storage mode to TIERED. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateStorage service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateStorage service method, as returned by Kafka.</returns> /// <exception cref="Amazon.Kafka.Model.BadRequestException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ForbiddenException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.InternalServerErrorException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.NotFoundException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.ServiceUnavailableException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.TooManyRequestsException"> /// Returns information about an error. /// </exception> /// <exception cref="Amazon.Kafka.Model.UnauthorizedException"> /// Returns information about an error. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateStorage">REST API Reference for UpdateStorage Operation</seealso> Task<UpdateStorageResponse> UpdateStorageAsync(UpdateStorageRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion } }