KqlScriptsClient.java

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

package com.azure.analytics.synapse.artifacts;

import com.azure.analytics.synapse.artifacts.implementation.KqlScriptsImpl;
import com.azure.analytics.synapse.artifacts.models.ErrorContractException;
import com.azure.analytics.synapse.artifacts.models.KqlScriptResource;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceClient;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.util.Context;

/** Initializes a new instance of the synchronous ArtifactsClient type. */
@ServiceClient(builder = ArtifactsClientBuilder.class)
public final class KqlScriptsClient {
    private final KqlScriptsImpl serviceClient;

    /**
     * Initializes an instance of KqlScripts client.
     *
     * @param serviceClient the service client implementation.
     */
    KqlScriptsClient(KqlScriptsImpl serviceClient) {
        this.serviceClient = serviceClient;
    }

    /**
     * Get all KQL scripts.
     *
     * @throws ErrorContractException thrown if the request is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     * @return all KQL scripts.
     */
    @ServiceMethod(returns = ReturnType.COLLECTION)
    public PagedIterable<KqlScriptResource> getAll() {
        return this.serviceClient.getAll();
    }

    /**
     * Get all KQL scripts.
     *
     * @param context The context to associate with this operation.
     * @throws IllegalArgumentException thrown if parameters fail the validation.
     * @throws ErrorContractException thrown if the request is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     * @return all KQL scripts.
     */
    @ServiceMethod(returns = ReturnType.COLLECTION)
    public PagedIterable<KqlScriptResource> getAll(Context context) {
        return this.serviceClient.getAll(context);
    }
}