![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.automation.fluent.AgentRegistrationInformationsClient 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.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.automation.fluent.models.AgentRegistrationInner;
import com.azure.resourcemanager.automation.models.AgentRegistrationRegenerateKeyParameter;
/**
* An instance of this class provides access to all the operations defined in AgentRegistrationInformationsClient.
*/
public interface AgentRegistrationInformationsClient {
/**
* Retrieve the automation agent registration information.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @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 agent registration information type along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response getWithResponse(String resourceGroupName, String automationAccountName,
Context context);
/**
* Retrieve the automation agent registration information.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @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 agent registration information type.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
AgentRegistrationInner get(String resourceGroupName, String automationAccountName);
/**
* Regenerate a primary or secondary agent registration key.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param parameters The name of the agent registration key to be regenerated.
* @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 agent registration information type along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response regenerateKeyWithResponse(String resourceGroupName, String automationAccountName,
AgentRegistrationRegenerateKeyParameter parameters, Context context);
/**
* Regenerate a primary or secondary agent registration key.
*
* @param resourceGroupName Name of an Azure Resource group.
* @param automationAccountName The name of the automation account.
* @param parameters The name of the agent registration key to be regenerated.
* @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 agent registration information type.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
AgentRegistrationInner regenerateKey(String resourceGroupName, String automationAccountName,
AgentRegistrationRegenerateKeyParameter parameters);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy