com.azure.resourcemanager.security.implementation.ApplicationOperationsClientImpl 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.implementation;
import com.azure.core.annotation.BodyParam;
import com.azure.core.annotation.Delete;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.Get;
import com.azure.core.annotation.HeaderParam;
import com.azure.core.annotation.Headers;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.PathParam;
import com.azure.core.annotation.Put;
import com.azure.core.annotation.QueryParam;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceInterface;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.annotation.UnexpectedResponseExceptionType;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.RestProxy;
import com.azure.core.management.exception.ManagementException;
import com.azure.core.util.Context;
import com.azure.core.util.FluxUtil;
import com.azure.resourcemanager.security.fluent.ApplicationOperationsClient;
import com.azure.resourcemanager.security.fluent.models.ApplicationInner;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in ApplicationOperationsClient.
*/
public final class ApplicationOperationsClientImpl implements ApplicationOperationsClient {
/**
* The proxy service used to perform REST calls.
*/
private final ApplicationOperationsService service;
/**
* The service client containing this operation class.
*/
private final SecurityCenterImpl client;
/**
* Initializes an instance of ApplicationOperationsClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
ApplicationOperationsClientImpl(SecurityCenterImpl client) {
this.service = RestProxy.create(ApplicationOperationsService.class, client.getHttpPipeline(),
client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for SecurityCenterApplicationOperations to be used by the proxy service
* to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "SecurityCenterApplic")
public interface ApplicationOperationsService {
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/providers/Microsoft.Security/applications/{applicationId}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> get(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("applicationId") String applicationId, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Put("/subscriptions/{subscriptionId}/providers/Microsoft.Security/applications/{applicationId}")
@ExpectedResponses({ 200, 201 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> createOrUpdate(@HostParam("$host") String endpoint,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("applicationId") String applicationId,
@BodyParam("application/json") ApplicationInner application, @HeaderParam("Accept") String accept,
Context context);
@Headers({ "Accept: application/json;q=0.9", "Content-Type: application/json" })
@Delete("/subscriptions/{subscriptionId}/providers/Microsoft.Security/applications/{applicationId}")
@ExpectedResponses({ 200, 204 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> delete(@HostParam("$host") String endpoint, @QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId, @PathParam("applicationId") String applicationId,
Context context);
}
/**
* Get a specific application for the requested scope by applicationId.
*
* @param applicationId The security Application key - unique key for the standard application.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 specific application for the requested scope by applicationId along with {@link Response} on successful
* completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String applicationId) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (applicationId == null) {
return Mono.error(new IllegalArgumentException("Parameter applicationId is required and cannot be null."));
}
final String apiVersion = "2022-07-01-preview";
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.get(this.client.getEndpoint(), apiVersion, this.client.getSubscriptionId(),
applicationId, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Get a specific application for the requested scope by applicationId.
*
* @param applicationId The security Application key - unique key for the standard application.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 specific application for the requested scope by applicationId along with {@link Response} on successful
* completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String applicationId, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (applicationId == null) {
return Mono.error(new IllegalArgumentException("Parameter applicationId is required and cannot be null."));
}
final String apiVersion = "2022-07-01-preview";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.get(this.client.getEndpoint(), apiVersion, this.client.getSubscriptionId(), applicationId,
accept, context);
}
/**
* Get a specific application for the requested scope by applicationId.
*
* @param applicationId The security Application key - unique key for the standard application.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 specific application for the requested scope by applicationId on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono getAsync(String applicationId) {
return getWithResponseAsync(applicationId).flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Get a specific application for the requested scope by applicationId.
*
* @param applicationId The security Application key - unique key for the standard application.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 specific application for the requested scope by applicationId along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getWithResponse(String applicationId, Context context) {
return getWithResponseAsync(applicationId, context).block();
}
/**
* Get a specific application for the requested scope by applicationId.
*
* @param applicationId The security Application key - unique key for the standard application.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 specific application for the requested scope by applicationId.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public ApplicationInner get(String applicationId) {
return getWithResponse(applicationId, Context.NONE).getValue();
}
/**
* Creates or update a security application on the given subscription.
*
* @param applicationId The security Application key - unique key for the standard application.
* @param application Application over a subscription scope.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return security Application over a given scope along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> createOrUpdateWithResponseAsync(String applicationId,
ApplicationInner application) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (applicationId == null) {
return Mono.error(new IllegalArgumentException("Parameter applicationId is required and cannot be null."));
}
if (application == null) {
return Mono.error(new IllegalArgumentException("Parameter application is required and cannot be null."));
} else {
application.validate();
}
final String apiVersion = "2022-07-01-preview";
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.createOrUpdate(this.client.getEndpoint(), apiVersion,
this.client.getSubscriptionId(), applicationId, application, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Creates or update a security application on the given subscription.
*
* @param applicationId The security Application key - unique key for the standard application.
* @param application Application over a subscription scope.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return security Application over a given scope along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> createOrUpdateWithResponseAsync(String applicationId,
ApplicationInner application, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (applicationId == null) {
return Mono.error(new IllegalArgumentException("Parameter applicationId is required and cannot be null."));
}
if (application == null) {
return Mono.error(new IllegalArgumentException("Parameter application is required and cannot be null."));
} else {
application.validate();
}
final String apiVersion = "2022-07-01-preview";
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.createOrUpdate(this.client.getEndpoint(), apiVersion, this.client.getSubscriptionId(),
applicationId, application, accept, context);
}
/**
* Creates or update a security application on the given subscription.
*
* @param applicationId The security Application key - unique key for the standard application.
* @param application Application over a subscription scope.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return security Application over a given scope on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono createOrUpdateAsync(String applicationId, ApplicationInner application) {
return createOrUpdateWithResponseAsync(applicationId, application)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Creates or update a security application on the given subscription.
*
* @param applicationId The security Application key - unique key for the standard application.
* @param application Application over a subscription scope.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return security Application over a given scope along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response createOrUpdateWithResponse(String applicationId, ApplicationInner application,
Context context) {
return createOrUpdateWithResponseAsync(applicationId, application, context).block();
}
/**
* Creates or update a security application on the given subscription.
*
* @param applicationId The security Application key - unique key for the standard application.
* @param application Application over a subscription scope.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return security Application over a given scope.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public ApplicationInner createOrUpdate(String applicationId, ApplicationInner application) {
return createOrUpdateWithResponse(applicationId, application, Context.NONE).getValue();
}
/**
* Delete an Application over a given scope.
*
* @param applicationId The security Application key - unique key for the standard application.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> deleteWithResponseAsync(String applicationId) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (applicationId == null) {
return Mono.error(new IllegalArgumentException("Parameter applicationId is required and cannot be null."));
}
final String apiVersion = "2022-07-01-preview";
return FluxUtil
.withContext(context -> service.delete(this.client.getEndpoint(), apiVersion,
this.client.getSubscriptionId(), applicationId, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Delete an Application over a given scope.
*
* @param applicationId The security Application key - unique key for the standard application.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> deleteWithResponseAsync(String applicationId, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
if (applicationId == null) {
return Mono.error(new IllegalArgumentException("Parameter applicationId is required and cannot be null."));
}
final String apiVersion = "2022-07-01-preview";
context = this.client.mergeContext(context);
return service.delete(this.client.getEndpoint(), apiVersion, this.client.getSubscriptionId(), applicationId,
context);
}
/**
* Delete an Application over a given scope.
*
* @param applicationId The security Application key - unique key for the standard application.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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 {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono deleteAsync(String applicationId) {
return deleteWithResponseAsync(applicationId).flatMap(ignored -> Mono.empty());
}
/**
* Delete an Application over a given scope.
*
* @param applicationId The security Application key - unique key for the standard application.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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)
public Response deleteWithResponse(String applicationId, Context context) {
return deleteWithResponseAsync(applicationId, context).block();
}
/**
* Delete an Application over a given scope.
*
* @param applicationId The security Application key - unique key for the standard application.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws 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)
public void delete(String applicationId) {
deleteWithResponse(applicationId, Context.NONE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy