All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.security.fluent.SqlVulnerabilityAssessmentBaselineRulesClient Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.security.fluent;

import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.http.rest.Response;
import com.azure.core.util.Context;
import com.azure.resourcemanager.security.fluent.models.RuleResultsInner;
import com.azure.resourcemanager.security.fluent.models.RulesResultsInner;
import com.azure.resourcemanager.security.models.RuleResultsInput;
import com.azure.resourcemanager.security.models.RulesResultsInput;

/**
 * An instance of this class provides access to all the operations defined in
 * SqlVulnerabilityAssessmentBaselineRulesClient.
 */
public interface SqlVulnerabilityAssessmentBaselineRulesClient {
    /**
     * Creates a Baseline for a rule in a database. Will overwrite any previously existing results.
     * 
     * @param ruleId The rule Id.
     * @param workspaceId The workspace Id.
     * @param resourceId The identifier of the resource.
     * @param body The baseline results for this rule.
     * @param context The context to associate with this operation.
     * @throws IllegalArgumentException thrown if parameters fail the validation.
     * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     * @return rule results along with {@link Response}.
     */
    @ServiceMethod(returns = ReturnType.SINGLE)
    Response createOrUpdateWithResponse(String ruleId, String workspaceId, String resourceId,
        RuleResultsInput body, Context context);

    /**
     * Creates a Baseline for a rule in a database. Will overwrite any previously existing results.
     * 
     * @param ruleId The rule Id.
     * @param workspaceId The workspace Id.
     * @param resourceId The identifier of the resource.
     * @throws IllegalArgumentException thrown if parameters fail the validation.
     * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     * @return rule results.
     */
    @ServiceMethod(returns = ReturnType.SINGLE)
    RuleResultsInner createOrUpdate(String ruleId, String workspaceId, String resourceId);

    /**
     * Gets the results for a given rule in the Baseline.
     * 
     * @param ruleId The rule Id.
     * @param workspaceId The workspace Id.
     * @param resourceId The identifier of the resource.
     * @param context The context to associate with this operation.
     * @throws IllegalArgumentException thrown if parameters fail the validation.
     * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     * @return the results for a given rule in the Baseline along with {@link Response}.
     */
    @ServiceMethod(returns = ReturnType.SINGLE)
    Response getWithResponse(String ruleId, String workspaceId, String resourceId, Context context);

    /**
     * Gets the results for a given rule in the Baseline.
     * 
     * @param ruleId The rule Id.
     * @param workspaceId The workspace Id.
     * @param resourceId The identifier of the resource.
     * @throws IllegalArgumentException thrown if parameters fail the validation.
     * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     * @return the results for a given rule in the Baseline.
     */
    @ServiceMethod(returns = ReturnType.SINGLE)
    RuleResultsInner get(String ruleId, String workspaceId, String resourceId);

    /**
     * Deletes a rule from the Baseline of a given database.
     * 
     * @param ruleId The rule Id.
     * @param workspaceId The workspace Id.
     * @param resourceId The identifier of the resource.
     * @param context The context to associate with this operation.
     * @throws IllegalArgumentException thrown if parameters fail the validation.
     * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     * @return the {@link Response}.
     */
    @ServiceMethod(returns = ReturnType.SINGLE)
    Response deleteWithResponse(String ruleId, String workspaceId, String resourceId, Context context);

    /**
     * Deletes a rule from the Baseline of a given database.
     * 
     * @param ruleId The rule Id.
     * @param workspaceId The workspace Id.
     * @param resourceId The identifier of the resource.
     * @throws IllegalArgumentException thrown if parameters fail the validation.
     * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     */
    @ServiceMethod(returns = ReturnType.SINGLE)
    void delete(String ruleId, String workspaceId, String resourceId);

    /**
     * Gets the results for all rules in the Baseline.
     * 
     * @param workspaceId The workspace Id.
     * @param resourceId The identifier of the resource.
     * @param context The context to associate with this operation.
     * @throws IllegalArgumentException thrown if parameters fail the validation.
     * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     * @return the results for all rules in the Baseline along with {@link Response}.
     */
    @ServiceMethod(returns = ReturnType.SINGLE)
    Response listWithResponse(String workspaceId, String resourceId, Context context);

    /**
     * Gets the results for all rules in the Baseline.
     * 
     * @param workspaceId The workspace Id.
     * @param resourceId The identifier of the resource.
     * @throws IllegalArgumentException thrown if parameters fail the validation.
     * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     * @return the results for all rules in the Baseline.
     */
    @ServiceMethod(returns = ReturnType.SINGLE)
    RulesResultsInner list(String workspaceId, String resourceId);

    /**
     * Add a list of baseline rules. Will overwrite any previously existing results (for all rules).
     * 
     * @param workspaceId The workspace Id.
     * @param resourceId The identifier of the resource.
     * @param body The baseline rules.
     * @param context The context to associate with this operation.
     * @throws IllegalArgumentException thrown if parameters fail the validation.
     * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     * @return a list of rules results along with {@link Response}.
     */
    @ServiceMethod(returns = ReturnType.SINGLE)
    Response addWithResponse(String workspaceId, String resourceId, RulesResultsInput body,
        Context context);

    /**
     * Add a list of baseline rules. Will overwrite any previously existing results (for all rules).
     * 
     * @param workspaceId The workspace Id.
     * @param resourceId The identifier of the resource.
     * @throws IllegalArgumentException thrown if parameters fail the validation.
     * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     * @return a list of rules results.
     */
    @ServiceMethod(returns = ReturnType.SINGLE)
    RulesResultsInner add(String workspaceId, String resourceId);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy