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

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

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

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

            // End snippet
        }