/// <summary>Snippet for UninstallDeploymentAsync</summary>
        public async Task UninstallDeploymentResourceNamesAsync()
        {
            // Snippet: UninstallDeploymentAsync(DeploymentName, CallSettings)
            // Additional: UninstallDeploymentAsync(DeploymentName, CancellationToken)
            // Create client
            GSuiteAddOnsClient gSuiteAddOnsClient = await GSuiteAddOnsClient.CreateAsync();

            // Initialize request argument(s)
            DeploymentName name = DeploymentName.FromProjectDeployment("[PROJECT]", "[DEPLOYMENT]");
            // Make the request
            await gSuiteAddOnsClient.UninstallDeploymentAsync(name);

            // End snippet
        }
        /// <summary>Snippet for UninstallDeploymentAsync</summary>
        public async Task UninstallDeploymentAsync()
        {
            // Snippet: UninstallDeploymentAsync(string, CallSettings)
            // Additional: UninstallDeploymentAsync(string, CancellationToken)
            // Create client
            GSuiteAddOnsClient gSuiteAddOnsClient = await GSuiteAddOnsClient.CreateAsync();

            // Initialize request argument(s)
            string name = "projects/[PROJECT]/deployments/[DEPLOYMENT]";
            // Make the request
            await gSuiteAddOnsClient.UninstallDeploymentAsync(name);

            // End snippet
        }