![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.automation.models.SourceControlSyncJobs 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.automation.models;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.Response;
import com.azure.core.util.Context;
import java.util.UUID;
/**
* Resource collection API of SourceControlSyncJobs.
*/
public interface SourceControlSyncJobs {
/**
* Retrieve the source control sync job identified by job id.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param sourceControlName The source control name.
* @param sourceControlSyncJobId The source control sync job id.
* @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 definition of the source control sync job along with {@link Response}.
*/
Response getWithResponse(String resourceGroupName, String automationAccountName,
String sourceControlName, UUID sourceControlSyncJobId, Context context);
/**
* Retrieve the source control sync job identified by job id.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param sourceControlName The source control name.
* @param sourceControlSyncJobId The source control sync job id.
* @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 definition of the source control sync job.
*/
SourceControlSyncJobById get(String resourceGroupName, String automationAccountName, String sourceControlName,
UUID sourceControlSyncJobId);
/**
* Retrieve a list of source control sync jobs.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param sourceControlName The source control name.
* @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 response model for the list source control sync jobs operation as paginated response with
* {@link PagedIterable}.
*/
PagedIterable listByAutomationAccount(String resourceGroupName, String automationAccountName,
String sourceControlName);
/**
* Retrieve a list of source control sync jobs.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param sourceControlName The source control name.
* @param filter The filter to apply on the operation.
* @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 response model for the list source control sync jobs operation as paginated response with
* {@link PagedIterable}.
*/
PagedIterable listByAutomationAccount(String resourceGroupName, String automationAccountName,
String sourceControlName, String filter, Context context);
/**
* Begins definition for a new SourceControlSyncJob resource.
*
* @param name resource name.
* @return the first stage of the new SourceControlSyncJob definition.
*/
SourceControlSyncJob.DefinitionStages.Blank define(UUID name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy