/* * 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 fms-2018-01-01.normal.json service model. */ using System; using System.Collections.Generic; using Amazon.Runtime; using Amazon.FMS.Model; namespace Amazon.FMS { /// <summary> /// Interface for accessing FMS /// /// This is the <i>Firewall Manager API Reference</i>. This guide is for developers who /// need detailed information about the Firewall Manager API actions, data types, and /// errors. For detailed information about Firewall Manager features, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-chapter.html">Firewall /// Manager Developer Guide</a>. /// /// /// <para> /// Some API actions require explicit resource permissions. For information, see the developer /// guide topic <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-security_iam_service-with-iam.html#fms-security_iam_service-with-iam-roles-service">Service /// roles for Firewall Manager</a>. /// </para> /// </summary> public partial interface IAmazonFMS : IAmazonService, IDisposable { #if BCL45 || AWS_ASYNC_ENUMERABLES_API /// <summary> /// Paginators for the service /// </summary> IFMSPaginatorFactory Paginators { get; } #endif #region AssociateAdminAccount /// <summary> /// Sets a Firewall Manager default administrator account. The Firewall Manager default /// administrator account can manage third-party firewalls and has full administrative /// scope that allows administration of all policy types, accounts, organizational units, /// and Regions. This account must be a member account of the organization in Organizations /// whose resources you want to protect. /// /// /// <para> /// For information about working with Firewall Manager administrator accounts, see <a /// href="https://docs.aws.amazon.com/organizations/latest/userguide/fms-administrators.html">Managing /// Firewall Manager administrators</a> in the <i>Firewall Manager Developer Guide</i>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the AssociateAdminAccount service method.</param> /// /// <returns>The response from the AssociateAdminAccount service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.LimitExceededException"> /// The operation exceeds a resource limit, for example, the maximum number of <code>policy</code> /// objects that you can create for an Amazon Web Services account. For more information, /// see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall /// Manager Limits</a> in the <i>WAF Developer Guide</i>. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/AssociateAdminAccount">REST API Reference for AssociateAdminAccount Operation</seealso> AssociateAdminAccountResponse AssociateAdminAccount(AssociateAdminAccountRequest request); /// <summary> /// Initiates the asynchronous execution of the AssociateAdminAccount operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the AssociateAdminAccount operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndAssociateAdminAccount /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/AssociateAdminAccount">REST API Reference for AssociateAdminAccount Operation</seealso> IAsyncResult BeginAssociateAdminAccount(AssociateAdminAccountRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the AssociateAdminAccount operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginAssociateAdminAccount.</param> /// /// <returns>Returns a AssociateAdminAccountResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/AssociateAdminAccount">REST API Reference for AssociateAdminAccount Operation</seealso> AssociateAdminAccountResponse EndAssociateAdminAccount(IAsyncResult asyncResult); #endregion #region AssociateThirdPartyFirewall /// <summary> /// Sets the Firewall Manager policy administrator as a tenant administrator of a third-party /// firewall service. A tenant is an instance of the third-party firewall service that's /// associated with your Amazon Web Services customer account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the AssociateThirdPartyFirewall service method.</param> /// /// <returns>The response from the AssociateThirdPartyFirewall service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/AssociateThirdPartyFirewall">REST API Reference for AssociateThirdPartyFirewall Operation</seealso> AssociateThirdPartyFirewallResponse AssociateThirdPartyFirewall(AssociateThirdPartyFirewallRequest request); /// <summary> /// Initiates the asynchronous execution of the AssociateThirdPartyFirewall operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the AssociateThirdPartyFirewall operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndAssociateThirdPartyFirewall /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/AssociateThirdPartyFirewall">REST API Reference for AssociateThirdPartyFirewall Operation</seealso> IAsyncResult BeginAssociateThirdPartyFirewall(AssociateThirdPartyFirewallRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the AssociateThirdPartyFirewall operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginAssociateThirdPartyFirewall.</param> /// /// <returns>Returns a AssociateThirdPartyFirewallResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/AssociateThirdPartyFirewall">REST API Reference for AssociateThirdPartyFirewall Operation</seealso> AssociateThirdPartyFirewallResponse EndAssociateThirdPartyFirewall(IAsyncResult asyncResult); #endregion #region BatchAssociateResource /// <summary> /// Associate resources to a Firewall Manager resource set. /// </summary> /// <param name="request">Container for the necessary parameters to execute the BatchAssociateResource service method.</param> /// /// <returns>The response from the BatchAssociateResource service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.LimitExceededException"> /// The operation exceeds a resource limit, for example, the maximum number of <code>policy</code> /// objects that you can create for an Amazon Web Services account. For more information, /// see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall /// Manager Limits</a> in the <i>WAF Developer Guide</i>. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/BatchAssociateResource">REST API Reference for BatchAssociateResource Operation</seealso> BatchAssociateResourceResponse BatchAssociateResource(BatchAssociateResourceRequest request); /// <summary> /// Initiates the asynchronous execution of the BatchAssociateResource operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the BatchAssociateResource operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndBatchAssociateResource /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/BatchAssociateResource">REST API Reference for BatchAssociateResource Operation</seealso> IAsyncResult BeginBatchAssociateResource(BatchAssociateResourceRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the BatchAssociateResource operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginBatchAssociateResource.</param> /// /// <returns>Returns a BatchAssociateResourceResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/BatchAssociateResource">REST API Reference for BatchAssociateResource Operation</seealso> BatchAssociateResourceResponse EndBatchAssociateResource(IAsyncResult asyncResult); #endregion #region BatchDisassociateResource /// <summary> /// Disassociates resources from a Firewall Manager resource set. /// </summary> /// <param name="request">Container for the necessary parameters to execute the BatchDisassociateResource service method.</param> /// /// <returns>The response from the BatchDisassociateResource service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/BatchDisassociateResource">REST API Reference for BatchDisassociateResource Operation</seealso> BatchDisassociateResourceResponse BatchDisassociateResource(BatchDisassociateResourceRequest request); /// <summary> /// Initiates the asynchronous execution of the BatchDisassociateResource operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the BatchDisassociateResource operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndBatchDisassociateResource /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/BatchDisassociateResource">REST API Reference for BatchDisassociateResource Operation</seealso> IAsyncResult BeginBatchDisassociateResource(BatchDisassociateResourceRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the BatchDisassociateResource operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginBatchDisassociateResource.</param> /// /// <returns>Returns a BatchDisassociateResourceResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/BatchDisassociateResource">REST API Reference for BatchDisassociateResource Operation</seealso> BatchDisassociateResourceResponse EndBatchDisassociateResource(IAsyncResult asyncResult); #endregion #region DeleteAppsList /// <summary> /// Permanently deletes an Firewall Manager applications list. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteAppsList service method.</param> /// /// <returns>The response from the DeleteAppsList service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeleteAppsList">REST API Reference for DeleteAppsList Operation</seealso> DeleteAppsListResponse DeleteAppsList(DeleteAppsListRequest request); /// <summary> /// Initiates the asynchronous execution of the DeleteAppsList operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteAppsList operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDeleteAppsList /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeleteAppsList">REST API Reference for DeleteAppsList Operation</seealso> IAsyncResult BeginDeleteAppsList(DeleteAppsListRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the DeleteAppsList operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteAppsList.</param> /// /// <returns>Returns a DeleteAppsListResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeleteAppsList">REST API Reference for DeleteAppsList Operation</seealso> DeleteAppsListResponse EndDeleteAppsList(IAsyncResult asyncResult); #endregion #region DeleteNotificationChannel /// <summary> /// Deletes an Firewall Manager association with the IAM role and the Amazon Simple Notification /// Service (SNS) topic that is used to record Firewall Manager SNS logs. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteNotificationChannel service method.</param> /// /// <returns>The response from the DeleteNotificationChannel service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeleteNotificationChannel">REST API Reference for DeleteNotificationChannel Operation</seealso> DeleteNotificationChannelResponse DeleteNotificationChannel(DeleteNotificationChannelRequest request); /// <summary> /// Initiates the asynchronous execution of the DeleteNotificationChannel operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteNotificationChannel operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDeleteNotificationChannel /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeleteNotificationChannel">REST API Reference for DeleteNotificationChannel Operation</seealso> IAsyncResult BeginDeleteNotificationChannel(DeleteNotificationChannelRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the DeleteNotificationChannel operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteNotificationChannel.</param> /// /// <returns>Returns a DeleteNotificationChannelResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeleteNotificationChannel">REST API Reference for DeleteNotificationChannel Operation</seealso> DeleteNotificationChannelResponse EndDeleteNotificationChannel(IAsyncResult asyncResult); #endregion #region DeletePolicy /// <summary> /// Permanently deletes an Firewall Manager policy. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeletePolicy service method.</param> /// /// <returns>The response from the DeletePolicy service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.LimitExceededException"> /// The operation exceeds a resource limit, for example, the maximum number of <code>policy</code> /// objects that you can create for an Amazon Web Services account. For more information, /// see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall /// Manager Limits</a> in the <i>WAF Developer Guide</i>. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeletePolicy">REST API Reference for DeletePolicy Operation</seealso> DeletePolicyResponse DeletePolicy(DeletePolicyRequest request); /// <summary> /// Initiates the asynchronous execution of the DeletePolicy operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeletePolicy operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDeletePolicy /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeletePolicy">REST API Reference for DeletePolicy Operation</seealso> IAsyncResult BeginDeletePolicy(DeletePolicyRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the DeletePolicy operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginDeletePolicy.</param> /// /// <returns>Returns a DeletePolicyResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeletePolicy">REST API Reference for DeletePolicy Operation</seealso> DeletePolicyResponse EndDeletePolicy(IAsyncResult asyncResult); #endregion #region DeleteProtocolsList /// <summary> /// Permanently deletes an Firewall Manager protocols list. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteProtocolsList service method.</param> /// /// <returns>The response from the DeleteProtocolsList service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeleteProtocolsList">REST API Reference for DeleteProtocolsList Operation</seealso> DeleteProtocolsListResponse DeleteProtocolsList(DeleteProtocolsListRequest request); /// <summary> /// Initiates the asynchronous execution of the DeleteProtocolsList operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteProtocolsList operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDeleteProtocolsList /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeleteProtocolsList">REST API Reference for DeleteProtocolsList Operation</seealso> IAsyncResult BeginDeleteProtocolsList(DeleteProtocolsListRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the DeleteProtocolsList operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteProtocolsList.</param> /// /// <returns>Returns a DeleteProtocolsListResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeleteProtocolsList">REST API Reference for DeleteProtocolsList Operation</seealso> DeleteProtocolsListResponse EndDeleteProtocolsList(IAsyncResult asyncResult); #endregion #region DeleteResourceSet /// <summary> /// Deletes the specified <a>ResourceSet</a>. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteResourceSet service method.</param> /// /// <returns>The response from the DeleteResourceSet service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeleteResourceSet">REST API Reference for DeleteResourceSet Operation</seealso> DeleteResourceSetResponse DeleteResourceSet(DeleteResourceSetRequest request); /// <summary> /// Initiates the asynchronous execution of the DeleteResourceSet operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteResourceSet operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDeleteResourceSet /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeleteResourceSet">REST API Reference for DeleteResourceSet Operation</seealso> IAsyncResult BeginDeleteResourceSet(DeleteResourceSetRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the DeleteResourceSet operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteResourceSet.</param> /// /// <returns>Returns a DeleteResourceSetResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DeleteResourceSet">REST API Reference for DeleteResourceSet Operation</seealso> DeleteResourceSetResponse EndDeleteResourceSet(IAsyncResult asyncResult); #endregion #region DisassociateAdminAccount /// <summary> /// Disassociates an Firewall Manager administrator account. To set a different account /// as an Firewall Manager administrator, submit a <a>PutAdminAccount</a> request. To /// set an account as a default administrator account, you must submit an <a>AssociateAdminAccount</a> /// request. /// /// /// <para> /// Disassociation of the default administrator account follows the first in, last out /// principle. If you are the default administrator, all Firewall Manager administrators /// within the organization must first disassociate their accounts before you can disassociate /// your account. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DisassociateAdminAccount service method.</param> /// /// <returns>The response from the DisassociateAdminAccount service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DisassociateAdminAccount">REST API Reference for DisassociateAdminAccount Operation</seealso> DisassociateAdminAccountResponse DisassociateAdminAccount(DisassociateAdminAccountRequest request); /// <summary> /// Initiates the asynchronous execution of the DisassociateAdminAccount operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DisassociateAdminAccount operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDisassociateAdminAccount /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DisassociateAdminAccount">REST API Reference for DisassociateAdminAccount Operation</seealso> IAsyncResult BeginDisassociateAdminAccount(DisassociateAdminAccountRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the DisassociateAdminAccount operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginDisassociateAdminAccount.</param> /// /// <returns>Returns a DisassociateAdminAccountResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DisassociateAdminAccount">REST API Reference for DisassociateAdminAccount Operation</seealso> DisassociateAdminAccountResponse EndDisassociateAdminAccount(IAsyncResult asyncResult); #endregion #region DisassociateThirdPartyFirewall /// <summary> /// Disassociates a Firewall Manager policy administrator from a third-party firewall /// tenant. When you call <code>DisassociateThirdPartyFirewall</code>, the third-party /// firewall vendor deletes all of the firewalls that are associated with the account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DisassociateThirdPartyFirewall service method.</param> /// /// <returns>The response from the DisassociateThirdPartyFirewall service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DisassociateThirdPartyFirewall">REST API Reference for DisassociateThirdPartyFirewall Operation</seealso> DisassociateThirdPartyFirewallResponse DisassociateThirdPartyFirewall(DisassociateThirdPartyFirewallRequest request); /// <summary> /// Initiates the asynchronous execution of the DisassociateThirdPartyFirewall operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DisassociateThirdPartyFirewall operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDisassociateThirdPartyFirewall /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DisassociateThirdPartyFirewall">REST API Reference for DisassociateThirdPartyFirewall Operation</seealso> IAsyncResult BeginDisassociateThirdPartyFirewall(DisassociateThirdPartyFirewallRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the DisassociateThirdPartyFirewall operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginDisassociateThirdPartyFirewall.</param> /// /// <returns>Returns a DisassociateThirdPartyFirewallResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/DisassociateThirdPartyFirewall">REST API Reference for DisassociateThirdPartyFirewall Operation</seealso> DisassociateThirdPartyFirewallResponse EndDisassociateThirdPartyFirewall(IAsyncResult asyncResult); #endregion #region GetAdminAccount /// <summary> /// Returns the Organizations account that is associated with Firewall Manager as the /// Firewall Manager default administrator. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetAdminAccount service method.</param> /// /// <returns>The response from the GetAdminAccount service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetAdminAccount">REST API Reference for GetAdminAccount Operation</seealso> GetAdminAccountResponse GetAdminAccount(GetAdminAccountRequest request); /// <summary> /// Initiates the asynchronous execution of the GetAdminAccount operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetAdminAccount operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndGetAdminAccount /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetAdminAccount">REST API Reference for GetAdminAccount Operation</seealso> IAsyncResult BeginGetAdminAccount(GetAdminAccountRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the GetAdminAccount operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginGetAdminAccount.</param> /// /// <returns>Returns a GetAdminAccountResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetAdminAccount">REST API Reference for GetAdminAccount Operation</seealso> GetAdminAccountResponse EndGetAdminAccount(IAsyncResult asyncResult); #endregion #region GetAdminScope /// <summary> /// Returns information about the specified account's administrative scope. The admistrative /// scope defines the resources that an Firewall Manager administrator can manage. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetAdminScope service method.</param> /// /// <returns>The response from the GetAdminScope service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.LimitExceededException"> /// The operation exceeds a resource limit, for example, the maximum number of <code>policy</code> /// objects that you can create for an Amazon Web Services account. For more information, /// see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall /// Manager Limits</a> in the <i>WAF Developer Guide</i>. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetAdminScope">REST API Reference for GetAdminScope Operation</seealso> GetAdminScopeResponse GetAdminScope(GetAdminScopeRequest request); /// <summary> /// Initiates the asynchronous execution of the GetAdminScope operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetAdminScope operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndGetAdminScope /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetAdminScope">REST API Reference for GetAdminScope Operation</seealso> IAsyncResult BeginGetAdminScope(GetAdminScopeRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the GetAdminScope operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginGetAdminScope.</param> /// /// <returns>Returns a GetAdminScopeResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetAdminScope">REST API Reference for GetAdminScope Operation</seealso> GetAdminScopeResponse EndGetAdminScope(IAsyncResult asyncResult); #endregion #region GetAppsList /// <summary> /// Returns information about the specified Firewall Manager applications list. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetAppsList service method.</param> /// /// <returns>The response from the GetAppsList service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetAppsList">REST API Reference for GetAppsList Operation</seealso> GetAppsListResponse GetAppsList(GetAppsListRequest request); /// <summary> /// Initiates the asynchronous execution of the GetAppsList operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetAppsList operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndGetAppsList /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetAppsList">REST API Reference for GetAppsList Operation</seealso> IAsyncResult BeginGetAppsList(GetAppsListRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the GetAppsList operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginGetAppsList.</param> /// /// <returns>Returns a GetAppsListResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetAppsList">REST API Reference for GetAppsList Operation</seealso> GetAppsListResponse EndGetAppsList(IAsyncResult asyncResult); #endregion #region GetComplianceDetail /// <summary> /// Returns detailed compliance information about the specified member account. Details /// include resources that are in and out of compliance with the specified policy. /// /// <ul> <li> /// <para> /// Resources are considered noncompliant for WAF and Shield Advanced policies if the /// specified policy has not been applied to them. /// </para> /// </li> <li> /// <para> /// Resources are considered noncompliant for security group policies if they are in scope /// of the policy, they violate one or more of the policy rules, and remediation is disabled /// or not possible. /// </para> /// </li> <li> /// <para> /// Resources are considered noncompliant for Network Firewall policies if a firewall /// is missing in the VPC, if the firewall endpoint isn't set up in an expected Availability /// Zone and subnet, if a subnet created by the Firewall Manager doesn't have the expected /// route table, and for modifications to a firewall policy that violate the Firewall /// Manager policy's rules. /// </para> /// </li> <li> /// <para> /// Resources are considered noncompliant for DNS Firewall policies if a DNS Firewall /// rule group is missing from the rule group associations for the VPC. /// </para> /// </li> </ul> /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetComplianceDetail service method.</param> /// /// <returns>The response from the GetComplianceDetail service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetComplianceDetail">REST API Reference for GetComplianceDetail Operation</seealso> GetComplianceDetailResponse GetComplianceDetail(GetComplianceDetailRequest request); /// <summary> /// Initiates the asynchronous execution of the GetComplianceDetail operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetComplianceDetail operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndGetComplianceDetail /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetComplianceDetail">REST API Reference for GetComplianceDetail Operation</seealso> IAsyncResult BeginGetComplianceDetail(GetComplianceDetailRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the GetComplianceDetail operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginGetComplianceDetail.</param> /// /// <returns>Returns a GetComplianceDetailResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetComplianceDetail">REST API Reference for GetComplianceDetail Operation</seealso> GetComplianceDetailResponse EndGetComplianceDetail(IAsyncResult asyncResult); #endregion #region GetNotificationChannel /// <summary> /// Information about the Amazon Simple Notification Service (SNS) topic that is used /// to record Firewall Manager SNS logs. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetNotificationChannel service method.</param> /// /// <returns>The response from the GetNotificationChannel service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetNotificationChannel">REST API Reference for GetNotificationChannel Operation</seealso> GetNotificationChannelResponse GetNotificationChannel(GetNotificationChannelRequest request); /// <summary> /// Initiates the asynchronous execution of the GetNotificationChannel operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetNotificationChannel operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndGetNotificationChannel /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetNotificationChannel">REST API Reference for GetNotificationChannel Operation</seealso> IAsyncResult BeginGetNotificationChannel(GetNotificationChannelRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the GetNotificationChannel operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginGetNotificationChannel.</param> /// /// <returns>Returns a GetNotificationChannelResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetNotificationChannel">REST API Reference for GetNotificationChannel Operation</seealso> GetNotificationChannelResponse EndGetNotificationChannel(IAsyncResult asyncResult); #endregion #region GetPolicy /// <summary> /// Returns information about the specified Firewall Manager policy. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetPolicy service method.</param> /// /// <returns>The response from the GetPolicy service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidTypeException"> /// The value of the <code>Type</code> parameter is invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetPolicy">REST API Reference for GetPolicy Operation</seealso> GetPolicyResponse GetPolicy(GetPolicyRequest request); /// <summary> /// Initiates the asynchronous execution of the GetPolicy operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetPolicy operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndGetPolicy /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetPolicy">REST API Reference for GetPolicy Operation</seealso> IAsyncResult BeginGetPolicy(GetPolicyRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the GetPolicy operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginGetPolicy.</param> /// /// <returns>Returns a GetPolicyResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetPolicy">REST API Reference for GetPolicy Operation</seealso> GetPolicyResponse EndGetPolicy(IAsyncResult asyncResult); #endregion #region GetProtectionStatus /// <summary> /// If you created a Shield Advanced policy, returns policy-level attack summary information /// in the event of a potential DDoS attack. Other policy types are currently unsupported. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetProtectionStatus service method.</param> /// /// <returns>The response from the GetProtectionStatus service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetProtectionStatus">REST API Reference for GetProtectionStatus Operation</seealso> GetProtectionStatusResponse GetProtectionStatus(GetProtectionStatusRequest request); /// <summary> /// Initiates the asynchronous execution of the GetProtectionStatus operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetProtectionStatus operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndGetProtectionStatus /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetProtectionStatus">REST API Reference for GetProtectionStatus Operation</seealso> IAsyncResult BeginGetProtectionStatus(GetProtectionStatusRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the GetProtectionStatus operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginGetProtectionStatus.</param> /// /// <returns>Returns a GetProtectionStatusResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetProtectionStatus">REST API Reference for GetProtectionStatus Operation</seealso> GetProtectionStatusResponse EndGetProtectionStatus(IAsyncResult asyncResult); #endregion #region GetProtocolsList /// <summary> /// Returns information about the specified Firewall Manager protocols list. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetProtocolsList service method.</param> /// /// <returns>The response from the GetProtocolsList service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetProtocolsList">REST API Reference for GetProtocolsList Operation</seealso> GetProtocolsListResponse GetProtocolsList(GetProtocolsListRequest request); /// <summary> /// Initiates the asynchronous execution of the GetProtocolsList operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetProtocolsList operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndGetProtocolsList /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetProtocolsList">REST API Reference for GetProtocolsList Operation</seealso> IAsyncResult BeginGetProtocolsList(GetProtocolsListRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the GetProtocolsList operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginGetProtocolsList.</param> /// /// <returns>Returns a GetProtocolsListResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetProtocolsList">REST API Reference for GetProtocolsList Operation</seealso> GetProtocolsListResponse EndGetProtocolsList(IAsyncResult asyncResult); #endregion #region GetResourceSet /// <summary> /// Gets information about a specific resource set. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetResourceSet service method.</param> /// /// <returns>The response from the GetResourceSet service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetResourceSet">REST API Reference for GetResourceSet Operation</seealso> GetResourceSetResponse GetResourceSet(GetResourceSetRequest request); /// <summary> /// Initiates the asynchronous execution of the GetResourceSet operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetResourceSet operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndGetResourceSet /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetResourceSet">REST API Reference for GetResourceSet Operation</seealso> IAsyncResult BeginGetResourceSet(GetResourceSetRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the GetResourceSet operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginGetResourceSet.</param> /// /// <returns>Returns a GetResourceSetResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetResourceSet">REST API Reference for GetResourceSet Operation</seealso> GetResourceSetResponse EndGetResourceSet(IAsyncResult asyncResult); #endregion #region GetThirdPartyFirewallAssociationStatus /// <summary> /// The onboarding status of a Firewall Manager admin account to third-party firewall /// vendor tenant. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetThirdPartyFirewallAssociationStatus service method.</param> /// /// <returns>The response from the GetThirdPartyFirewallAssociationStatus service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetThirdPartyFirewallAssociationStatus">REST API Reference for GetThirdPartyFirewallAssociationStatus Operation</seealso> GetThirdPartyFirewallAssociationStatusResponse GetThirdPartyFirewallAssociationStatus(GetThirdPartyFirewallAssociationStatusRequest request); /// <summary> /// Initiates the asynchronous execution of the GetThirdPartyFirewallAssociationStatus operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetThirdPartyFirewallAssociationStatus operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndGetThirdPartyFirewallAssociationStatus /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetThirdPartyFirewallAssociationStatus">REST API Reference for GetThirdPartyFirewallAssociationStatus Operation</seealso> IAsyncResult BeginGetThirdPartyFirewallAssociationStatus(GetThirdPartyFirewallAssociationStatusRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the GetThirdPartyFirewallAssociationStatus operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginGetThirdPartyFirewallAssociationStatus.</param> /// /// <returns>Returns a GetThirdPartyFirewallAssociationStatusResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetThirdPartyFirewallAssociationStatus">REST API Reference for GetThirdPartyFirewallAssociationStatus Operation</seealso> GetThirdPartyFirewallAssociationStatusResponse EndGetThirdPartyFirewallAssociationStatus(IAsyncResult asyncResult); #endregion #region GetViolationDetails /// <summary> /// Retrieves violations for a resource based on the specified Firewall Manager policy /// and Amazon Web Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the GetViolationDetails service method.</param> /// /// <returns>The response from the GetViolationDetails service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetViolationDetails">REST API Reference for GetViolationDetails Operation</seealso> GetViolationDetailsResponse GetViolationDetails(GetViolationDetailsRequest request); /// <summary> /// Initiates the asynchronous execution of the GetViolationDetails operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetViolationDetails operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndGetViolationDetails /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetViolationDetails">REST API Reference for GetViolationDetails Operation</seealso> IAsyncResult BeginGetViolationDetails(GetViolationDetailsRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the GetViolationDetails operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginGetViolationDetails.</param> /// /// <returns>Returns a GetViolationDetailsResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetViolationDetails">REST API Reference for GetViolationDetails Operation</seealso> GetViolationDetailsResponse EndGetViolationDetails(IAsyncResult asyncResult); #endregion #region ListAdminAccountsForOrganization /// <summary> /// Returns a <code>AdminAccounts</code> object that lists the Firewall Manager administrators /// within the organization that are onboarded to Firewall Manager by <a>AssociateAdminAccount</a>. /// /// /// <para> /// This operation can be called only from the organization's management account. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListAdminAccountsForOrganization service method.</param> /// /// <returns>The response from the ListAdminAccountsForOrganization service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.LimitExceededException"> /// The operation exceeds a resource limit, for example, the maximum number of <code>policy</code> /// objects that you can create for an Amazon Web Services account. For more information, /// see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall /// Manager Limits</a> in the <i>WAF Developer Guide</i>. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListAdminAccountsForOrganization">REST API Reference for ListAdminAccountsForOrganization Operation</seealso> ListAdminAccountsForOrganizationResponse ListAdminAccountsForOrganization(ListAdminAccountsForOrganizationRequest request); /// <summary> /// Initiates the asynchronous execution of the ListAdminAccountsForOrganization operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListAdminAccountsForOrganization operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListAdminAccountsForOrganization /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListAdminAccountsForOrganization">REST API Reference for ListAdminAccountsForOrganization Operation</seealso> IAsyncResult BeginListAdminAccountsForOrganization(ListAdminAccountsForOrganizationRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the ListAdminAccountsForOrganization operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginListAdminAccountsForOrganization.</param> /// /// <returns>Returns a ListAdminAccountsForOrganizationResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListAdminAccountsForOrganization">REST API Reference for ListAdminAccountsForOrganization Operation</seealso> ListAdminAccountsForOrganizationResponse EndListAdminAccountsForOrganization(IAsyncResult asyncResult); #endregion #region ListAdminsManagingAccount /// <summary> /// Lists the accounts that are managing the specified Organizations member account. This /// is useful for any member account so that they can view the accounts who are managing /// their account. This operation only returns the managing administrators that have the /// requested account within their <a>AdminScope</a>. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListAdminsManagingAccount service method.</param> /// /// <returns>The response from the ListAdminsManagingAccount service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListAdminsManagingAccount">REST API Reference for ListAdminsManagingAccount Operation</seealso> ListAdminsManagingAccountResponse ListAdminsManagingAccount(ListAdminsManagingAccountRequest request); /// <summary> /// Initiates the asynchronous execution of the ListAdminsManagingAccount operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListAdminsManagingAccount operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListAdminsManagingAccount /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListAdminsManagingAccount">REST API Reference for ListAdminsManagingAccount Operation</seealso> IAsyncResult BeginListAdminsManagingAccount(ListAdminsManagingAccountRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the ListAdminsManagingAccount operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginListAdminsManagingAccount.</param> /// /// <returns>Returns a ListAdminsManagingAccountResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListAdminsManagingAccount">REST API Reference for ListAdminsManagingAccount Operation</seealso> ListAdminsManagingAccountResponse EndListAdminsManagingAccount(IAsyncResult asyncResult); #endregion #region ListAppsLists /// <summary> /// Returns an array of <code>AppsListDataSummary</code> objects. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListAppsLists service method.</param> /// /// <returns>The response from the ListAppsLists service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.LimitExceededException"> /// The operation exceeds a resource limit, for example, the maximum number of <code>policy</code> /// objects that you can create for an Amazon Web Services account. For more information, /// see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall /// Manager Limits</a> in the <i>WAF Developer Guide</i>. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListAppsLists">REST API Reference for ListAppsLists Operation</seealso> ListAppsListsResponse ListAppsLists(ListAppsListsRequest request); /// <summary> /// Initiates the asynchronous execution of the ListAppsLists operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListAppsLists operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListAppsLists /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListAppsLists">REST API Reference for ListAppsLists Operation</seealso> IAsyncResult BeginListAppsLists(ListAppsListsRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the ListAppsLists operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginListAppsLists.</param> /// /// <returns>Returns a ListAppsListsResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListAppsLists">REST API Reference for ListAppsLists Operation</seealso> ListAppsListsResponse EndListAppsLists(IAsyncResult asyncResult); #endregion #region ListComplianceStatus /// <summary> /// Returns an array of <code>PolicyComplianceStatus</code> objects. Use <code>PolicyComplianceStatus</code> /// to get a summary of which member accounts are protected by the specified policy. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListComplianceStatus service method.</param> /// /// <returns>The response from the ListComplianceStatus service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListComplianceStatus">REST API Reference for ListComplianceStatus Operation</seealso> ListComplianceStatusResponse ListComplianceStatus(ListComplianceStatusRequest request); /// <summary> /// Initiates the asynchronous execution of the ListComplianceStatus operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListComplianceStatus operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListComplianceStatus /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListComplianceStatus">REST API Reference for ListComplianceStatus Operation</seealso> IAsyncResult BeginListComplianceStatus(ListComplianceStatusRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the ListComplianceStatus operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginListComplianceStatus.</param> /// /// <returns>Returns a ListComplianceStatusResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListComplianceStatus">REST API Reference for ListComplianceStatus Operation</seealso> ListComplianceStatusResponse EndListComplianceStatus(IAsyncResult asyncResult); #endregion #region ListDiscoveredResources /// <summary> /// Returns an array of resources in the organization's accounts that are available to /// be associated with a resource set. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListDiscoveredResources service method.</param> /// /// <returns>The response from the ListDiscoveredResources service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListDiscoveredResources">REST API Reference for ListDiscoveredResources Operation</seealso> ListDiscoveredResourcesResponse ListDiscoveredResources(ListDiscoveredResourcesRequest request); /// <summary> /// Initiates the asynchronous execution of the ListDiscoveredResources operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListDiscoveredResources operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListDiscoveredResources /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListDiscoveredResources">REST API Reference for ListDiscoveredResources Operation</seealso> IAsyncResult BeginListDiscoveredResources(ListDiscoveredResourcesRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the ListDiscoveredResources operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginListDiscoveredResources.</param> /// /// <returns>Returns a ListDiscoveredResourcesResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListDiscoveredResources">REST API Reference for ListDiscoveredResources Operation</seealso> ListDiscoveredResourcesResponse EndListDiscoveredResources(IAsyncResult asyncResult); #endregion #region ListMemberAccounts /// <summary> /// Returns a <code>MemberAccounts</code> object that lists the member accounts in the /// administrator's Amazon Web Services organization. /// /// /// <para> /// Either an Firewall Manager administrator or the organization's management account /// can make this request. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListMemberAccounts service method.</param> /// /// <returns>The response from the ListMemberAccounts service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListMemberAccounts">REST API Reference for ListMemberAccounts Operation</seealso> ListMemberAccountsResponse ListMemberAccounts(ListMemberAccountsRequest request); /// <summary> /// Initiates the asynchronous execution of the ListMemberAccounts operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListMemberAccounts operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListMemberAccounts /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListMemberAccounts">REST API Reference for ListMemberAccounts Operation</seealso> IAsyncResult BeginListMemberAccounts(ListMemberAccountsRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the ListMemberAccounts operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginListMemberAccounts.</param> /// /// <returns>Returns a ListMemberAccountsResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListMemberAccounts">REST API Reference for ListMemberAccounts Operation</seealso> ListMemberAccountsResponse EndListMemberAccounts(IAsyncResult asyncResult); #endregion #region ListPolicies /// <summary> /// Returns an array of <code>PolicySummary</code> objects. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListPolicies service method.</param> /// /// <returns>The response from the ListPolicies service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.LimitExceededException"> /// The operation exceeds a resource limit, for example, the maximum number of <code>policy</code> /// objects that you can create for an Amazon Web Services account. For more information, /// see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall /// Manager Limits</a> in the <i>WAF Developer Guide</i>. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListPolicies">REST API Reference for ListPolicies Operation</seealso> ListPoliciesResponse ListPolicies(ListPoliciesRequest request); /// <summary> /// Initiates the asynchronous execution of the ListPolicies operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListPolicies operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListPolicies /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListPolicies">REST API Reference for ListPolicies Operation</seealso> IAsyncResult BeginListPolicies(ListPoliciesRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the ListPolicies operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginListPolicies.</param> /// /// <returns>Returns a ListPoliciesResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListPolicies">REST API Reference for ListPolicies Operation</seealso> ListPoliciesResponse EndListPolicies(IAsyncResult asyncResult); #endregion #region ListProtocolsLists /// <summary> /// Returns an array of <code>ProtocolsListDataSummary</code> objects. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListProtocolsLists service method.</param> /// /// <returns>The response from the ListProtocolsLists service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListProtocolsLists">REST API Reference for ListProtocolsLists Operation</seealso> ListProtocolsListsResponse ListProtocolsLists(ListProtocolsListsRequest request); /// <summary> /// Initiates the asynchronous execution of the ListProtocolsLists operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListProtocolsLists operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListProtocolsLists /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListProtocolsLists">REST API Reference for ListProtocolsLists Operation</seealso> IAsyncResult BeginListProtocolsLists(ListProtocolsListsRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the ListProtocolsLists operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginListProtocolsLists.</param> /// /// <returns>Returns a ListProtocolsListsResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListProtocolsLists">REST API Reference for ListProtocolsLists Operation</seealso> ListProtocolsListsResponse EndListProtocolsLists(IAsyncResult asyncResult); #endregion #region ListResourceSetResources /// <summary> /// Returns an array of resources that are currently associated to a resource set. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListResourceSetResources service method.</param> /// /// <returns>The response from the ListResourceSetResources service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListResourceSetResources">REST API Reference for ListResourceSetResources Operation</seealso> ListResourceSetResourcesResponse ListResourceSetResources(ListResourceSetResourcesRequest request); /// <summary> /// Initiates the asynchronous execution of the ListResourceSetResources operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListResourceSetResources operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListResourceSetResources /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListResourceSetResources">REST API Reference for ListResourceSetResources Operation</seealso> IAsyncResult BeginListResourceSetResources(ListResourceSetResourcesRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the ListResourceSetResources operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginListResourceSetResources.</param> /// /// <returns>Returns a ListResourceSetResourcesResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListResourceSetResources">REST API Reference for ListResourceSetResources Operation</seealso> ListResourceSetResourcesResponse EndListResourceSetResources(IAsyncResult asyncResult); #endregion #region ListResourceSets /// <summary> /// Returns an array of <code>ResourceSetSummary</code> objects. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListResourceSets service method.</param> /// /// <returns>The response from the ListResourceSets service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListResourceSets">REST API Reference for ListResourceSets Operation</seealso> ListResourceSetsResponse ListResourceSets(ListResourceSetsRequest request); /// <summary> /// Initiates the asynchronous execution of the ListResourceSets operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListResourceSets operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListResourceSets /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListResourceSets">REST API Reference for ListResourceSets Operation</seealso> IAsyncResult BeginListResourceSets(ListResourceSetsRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the ListResourceSets operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginListResourceSets.</param> /// /// <returns>Returns a ListResourceSetsResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListResourceSets">REST API Reference for ListResourceSets Operation</seealso> ListResourceSetsResponse EndListResourceSets(IAsyncResult asyncResult); #endregion #region ListTagsForResource /// <summary> /// Retrieves the list of tags for the specified Amazon Web Services 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 FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListTagsForResource">REST API Reference for ListTagsForResource Operation</seealso> ListTagsForResourceResponse ListTagsForResource(ListTagsForResourceRequest request); /// <summary> /// Initiates the asynchronous execution of the ListTagsForResource operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListTagsForResource operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListTagsForResource /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListTagsForResource">REST API Reference for ListTagsForResource Operation</seealso> IAsyncResult BeginListTagsForResource(ListTagsForResourceRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the ListTagsForResource operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginListTagsForResource.</param> /// /// <returns>Returns a ListTagsForResourceResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListTagsForResource">REST API Reference for ListTagsForResource Operation</seealso> ListTagsForResourceResponse EndListTagsForResource(IAsyncResult asyncResult); #endregion #region ListThirdPartyFirewallFirewallPolicies /// <summary> /// Retrieves a list of all of the third-party firewall policies that are associated with /// the third-party firewall administrator's account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListThirdPartyFirewallFirewallPolicies service method.</param> /// /// <returns>The response from the ListThirdPartyFirewallFirewallPolicies service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListThirdPartyFirewallFirewallPolicies">REST API Reference for ListThirdPartyFirewallFirewallPolicies Operation</seealso> ListThirdPartyFirewallFirewallPoliciesResponse ListThirdPartyFirewallFirewallPolicies(ListThirdPartyFirewallFirewallPoliciesRequest request); /// <summary> /// Initiates the asynchronous execution of the ListThirdPartyFirewallFirewallPolicies operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListThirdPartyFirewallFirewallPolicies operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListThirdPartyFirewallFirewallPolicies /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListThirdPartyFirewallFirewallPolicies">REST API Reference for ListThirdPartyFirewallFirewallPolicies Operation</seealso> IAsyncResult BeginListThirdPartyFirewallFirewallPolicies(ListThirdPartyFirewallFirewallPoliciesRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the ListThirdPartyFirewallFirewallPolicies operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginListThirdPartyFirewallFirewallPolicies.</param> /// /// <returns>Returns a ListThirdPartyFirewallFirewallPoliciesResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListThirdPartyFirewallFirewallPolicies">REST API Reference for ListThirdPartyFirewallFirewallPolicies Operation</seealso> ListThirdPartyFirewallFirewallPoliciesResponse EndListThirdPartyFirewallFirewallPolicies(IAsyncResult asyncResult); #endregion #region PutAdminAccount /// <summary> /// Creates or updates an Firewall Manager administrator account. The account must be /// a member of the organization that was onboarded to Firewall Manager by <a>AssociateAdminAccount</a>. /// Only the organization's management account can create an Firewall Manager administrator /// account. When you create an Firewall Manager administrator account, the service checks /// to see if the account is already a delegated administrator within Organizations. If /// the account isn't a delegated administrator, Firewall Manager calls Organizations /// to delegate the account within Organizations. For more information about administrator /// accounts within Organizations, see <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_accounts.html">Managing /// the Amazon Web Services Accounts in Your Organization</a>. /// </summary> /// <param name="request">Container for the necessary parameters to execute the PutAdminAccount service method.</param> /// /// <returns>The response from the PutAdminAccount service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.LimitExceededException"> /// The operation exceeds a resource limit, for example, the maximum number of <code>policy</code> /// objects that you can create for an Amazon Web Services account. For more information, /// see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall /// Manager Limits</a> in the <i>WAF Developer Guide</i>. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutAdminAccount">REST API Reference for PutAdminAccount Operation</seealso> PutAdminAccountResponse PutAdminAccount(PutAdminAccountRequest request); /// <summary> /// Initiates the asynchronous execution of the PutAdminAccount operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PutAdminAccount operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndPutAdminAccount /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutAdminAccount">REST API Reference for PutAdminAccount Operation</seealso> IAsyncResult BeginPutAdminAccount(PutAdminAccountRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the PutAdminAccount operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginPutAdminAccount.</param> /// /// <returns>Returns a PutAdminAccountResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutAdminAccount">REST API Reference for PutAdminAccount Operation</seealso> PutAdminAccountResponse EndPutAdminAccount(IAsyncResult asyncResult); #endregion #region PutAppsList /// <summary> /// Creates an Firewall Manager applications list. /// </summary> /// <param name="request">Container for the necessary parameters to execute the PutAppsList service method.</param> /// /// <returns>The response from the PutAppsList service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.LimitExceededException"> /// The operation exceeds a resource limit, for example, the maximum number of <code>policy</code> /// objects that you can create for an Amazon Web Services account. For more information, /// see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall /// Manager Limits</a> in the <i>WAF Developer Guide</i>. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutAppsList">REST API Reference for PutAppsList Operation</seealso> PutAppsListResponse PutAppsList(PutAppsListRequest request); /// <summary> /// Initiates the asynchronous execution of the PutAppsList operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PutAppsList operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndPutAppsList /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutAppsList">REST API Reference for PutAppsList Operation</seealso> IAsyncResult BeginPutAppsList(PutAppsListRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the PutAppsList operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginPutAppsList.</param> /// /// <returns>Returns a PutAppsListResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutAppsList">REST API Reference for PutAppsList Operation</seealso> PutAppsListResponse EndPutAppsList(IAsyncResult asyncResult); #endregion #region PutNotificationChannel /// <summary> /// Designates the IAM role and Amazon Simple Notification Service (SNS) topic that Firewall /// Manager uses to record SNS logs. /// /// /// <para> /// To perform this action outside of the console, you must first configure the SNS topic's /// access policy to allow the <code>SnsRoleName</code> to publish SNS logs. If the <code>SnsRoleName</code> /// provided is a role other than the <code>AWSServiceRoleForFMS</code> service-linked /// role, this role must have a trust relationship configured to allow the Firewall Manager /// service principal <code>fms.amazonaws.com</code> to assume this role. For information /// about configuring an SNS access policy, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-security_iam_service-with-iam.html#fms-security_iam_service-with-iam-roles-service">Service /// roles for Firewall Manager</a> in the <i>Firewall Manager Developer Guide</i>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the PutNotificationChannel service method.</param> /// /// <returns>The response from the PutNotificationChannel service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutNotificationChannel">REST API Reference for PutNotificationChannel Operation</seealso> PutNotificationChannelResponse PutNotificationChannel(PutNotificationChannelRequest request); /// <summary> /// Initiates the asynchronous execution of the PutNotificationChannel operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PutNotificationChannel operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndPutNotificationChannel /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutNotificationChannel">REST API Reference for PutNotificationChannel Operation</seealso> IAsyncResult BeginPutNotificationChannel(PutNotificationChannelRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the PutNotificationChannel operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginPutNotificationChannel.</param> /// /// <returns>Returns a PutNotificationChannelResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutNotificationChannel">REST API Reference for PutNotificationChannel Operation</seealso> PutNotificationChannelResponse EndPutNotificationChannel(IAsyncResult asyncResult); #endregion #region PutPolicy /// <summary> /// Creates an Firewall Manager policy. /// /// /// <para> /// Firewall Manager provides the following types of policies: /// </para> /// <ul> <li> /// <para> /// An WAF policy (type WAFV2), which defines rule groups to run first in the corresponding /// WAF web ACL and rule groups to run last in the web ACL. /// </para> /// </li> <li> /// <para> /// An WAF Classic policy (type WAF), which defines a rule group. /// </para> /// </li> <li> /// <para> /// A Shield Advanced policy, which applies Shield Advanced protection to specified accounts /// and resources. /// </para> /// </li> <li> /// <para> /// A security group policy, which manages VPC security groups across your Amazon Web /// Services organization. /// </para> /// </li> <li> /// <para> /// An Network Firewall policy, which provides firewall rules to filter network traffic /// in specified Amazon VPCs. /// </para> /// </li> <li> /// <para> /// A DNS Firewall policy, which provides RouteĆ 53 Resolver DNS Firewall rules to filter /// DNS queries for specified VPCs. /// </para> /// </li> </ul> /// <para> /// Each policy is specific to one of the types. If you want to enforce more than one /// policy type across accounts, create multiple policies. You can create multiple policies /// for each type. /// </para> /// /// <para> /// You must be subscribed to Shield Advanced to create a Shield Advanced policy. For /// more information about subscribing to Shield Advanced, see <a href="https://docs.aws.amazon.com/waf/latest/DDOSAPIReference/API_CreateSubscription.html">CreateSubscription</a>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the PutPolicy service method.</param> /// /// <returns>The response from the PutPolicy service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidTypeException"> /// The value of the <code>Type</code> parameter is invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.LimitExceededException"> /// The operation exceeds a resource limit, for example, the maximum number of <code>policy</code> /// objects that you can create for an Amazon Web Services account. For more information, /// see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall /// Manager Limits</a> in the <i>WAF Developer Guide</i>. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutPolicy">REST API Reference for PutPolicy Operation</seealso> PutPolicyResponse PutPolicy(PutPolicyRequest request); /// <summary> /// Initiates the asynchronous execution of the PutPolicy operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PutPolicy operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndPutPolicy /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutPolicy">REST API Reference for PutPolicy Operation</seealso> IAsyncResult BeginPutPolicy(PutPolicyRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the PutPolicy operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginPutPolicy.</param> /// /// <returns>Returns a PutPolicyResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutPolicy">REST API Reference for PutPolicy Operation</seealso> PutPolicyResponse EndPutPolicy(IAsyncResult asyncResult); #endregion #region PutProtocolsList /// <summary> /// Creates an Firewall Manager protocols list. /// </summary> /// <param name="request">Container for the necessary parameters to execute the PutProtocolsList service method.</param> /// /// <returns>The response from the PutProtocolsList service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.LimitExceededException"> /// The operation exceeds a resource limit, for example, the maximum number of <code>policy</code> /// objects that you can create for an Amazon Web Services account. For more information, /// see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall /// Manager Limits</a> in the <i>WAF Developer Guide</i>. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutProtocolsList">REST API Reference for PutProtocolsList Operation</seealso> PutProtocolsListResponse PutProtocolsList(PutProtocolsListRequest request); /// <summary> /// Initiates the asynchronous execution of the PutProtocolsList operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PutProtocolsList operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndPutProtocolsList /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutProtocolsList">REST API Reference for PutProtocolsList Operation</seealso> IAsyncResult BeginPutProtocolsList(PutProtocolsListRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the PutProtocolsList operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginPutProtocolsList.</param> /// /// <returns>Returns a PutProtocolsListResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutProtocolsList">REST API Reference for PutProtocolsList Operation</seealso> PutProtocolsListResponse EndPutProtocolsList(IAsyncResult asyncResult); #endregion #region PutResourceSet /// <summary> /// Creates the resource set. /// /// /// <para> /// An Firewall Manager resource set defines the resources to import into an Firewall /// Manager policy from another Amazon Web Services service. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the PutResourceSet service method.</param> /// /// <returns>The response from the PutResourceSet service method, as returned by FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.LimitExceededException"> /// The operation exceeds a resource limit, for example, the maximum number of <code>policy</code> /// objects that you can create for an Amazon Web Services account. For more information, /// see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall /// Manager Limits</a> in the <i>WAF Developer Guide</i>. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutResourceSet">REST API Reference for PutResourceSet Operation</seealso> PutResourceSetResponse PutResourceSet(PutResourceSetRequest request); /// <summary> /// Initiates the asynchronous execution of the PutResourceSet operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PutResourceSet operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndPutResourceSet /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutResourceSet">REST API Reference for PutResourceSet Operation</seealso> IAsyncResult BeginPutResourceSet(PutResourceSetRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the PutResourceSet operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginPutResourceSet.</param> /// /// <returns>Returns a PutResourceSetResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutResourceSet">REST API Reference for PutResourceSet Operation</seealso> PutResourceSetResponse EndPutResourceSet(IAsyncResult asyncResult); #endregion #region TagResource /// <summary> /// Adds one or more tags to an Amazon Web Services 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 FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.LimitExceededException"> /// The operation exceeds a resource limit, for example, the maximum number of <code>policy</code> /// objects that you can create for an Amazon Web Services account. For more information, /// see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall /// Manager Limits</a> in the <i>WAF Developer Guide</i>. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/TagResource">REST API Reference for TagResource Operation</seealso> TagResourceResponse TagResource(TagResourceRequest request); /// <summary> /// Initiates the asynchronous execution of the TagResource operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the TagResource operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndTagResource /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/TagResource">REST API Reference for TagResource Operation</seealso> IAsyncResult BeginTagResource(TagResourceRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the TagResource operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginTagResource.</param> /// /// <returns>Returns a TagResourceResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/TagResource">REST API Reference for TagResource Operation</seealso> TagResourceResponse EndTagResource(IAsyncResult asyncResult); #endregion #region UntagResource /// <summary> /// Removes one or more tags from an Amazon Web Services resource. /// </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 FMS.</returns> /// <exception cref="Amazon.FMS.Model.InternalErrorException"> /// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidInputException"> /// The parameters of the request were invalid. /// </exception> /// <exception cref="Amazon.FMS.Model.InvalidOperationException"> /// The operation failed because there was nothing to do or the operation wasn't possible. /// For example, you might have submitted an <code>AssociateAdminAccount</code> request /// for an account ID that was already set as the Firewall Manager administrator. Or you /// might have tried to access a Region that's disabled by default, and that you need /// to enable for the Firewall Manager administrator account and for Organizations before /// you can access it. /// </exception> /// <exception cref="Amazon.FMS.Model.ResourceNotFoundException"> /// The specified resource was not found. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/UntagResource">REST API Reference for UntagResource Operation</seealso> UntagResourceResponse UntagResource(UntagResourceRequest request); /// <summary> /// Initiates the asynchronous execution of the UntagResource operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the UntagResource operation on AmazonFMSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndUntagResource /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/UntagResource">REST API Reference for UntagResource Operation</seealso> IAsyncResult BeginUntagResource(UntagResourceRequest request, AsyncCallback callback, object state); /// <summary> /// Finishes the asynchronous execution of the UntagResource operation. /// </summary> /// /// <param name="asyncResult">The IAsyncResult returned by the call to BeginUntagResource.</param> /// /// <returns>Returns a UntagResourceResult from FMS.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/UntagResource">REST API Reference for UntagResource Operation</seealso> UntagResourceResponse EndUntagResource(IAsyncResult asyncResult); #endregion } }