com.azure.resourcemanager.storage.implementation.EncryptionScopesClientImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storage Show documentation
Show all versions of azure-resourcemanager-storage Show documentation
This package contains Microsoft Azure Storage Management SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.storage.implementation;
import com.azure.core.annotation.BodyParam;
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.Patch;
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.PagedFlux;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.PagedResponse;
import com.azure.core.http.rest.PagedResponseBase;
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.storage.fluent.EncryptionScopesClient;
import com.azure.resourcemanager.storage.fluent.models.EncryptionScopeInner;
import com.azure.resourcemanager.storage.models.EncryptionScopeListResult;
import com.azure.resourcemanager.storage.models.ListEncryptionScopesInclude;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in EncryptionScopesClient.
*/
public final class EncryptionScopesClientImpl implements EncryptionScopesClient {
/**
* The proxy service used to perform REST calls.
*/
private final EncryptionScopesService service;
/**
* The service client containing this operation class.
*/
private final StorageManagementClientImpl client;
/**
* Initializes an instance of EncryptionScopesClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
EncryptionScopesClientImpl(StorageManagementClientImpl client) {
this.service
= RestProxy.create(EncryptionScopesService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for StorageManagementClientEncryptionScopes to be used by the proxy
* service to perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "StorageManagementCli")
public interface EncryptionScopesService {
@Headers({ "Content-Type: application/json" })
@Put("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/encryptionScopes/{encryptionScopeName}")
@ExpectedResponses({ 200, 201 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> put(@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("accountName") String accountName,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("encryptionScopeName") String encryptionScopeName,
@BodyParam("application/json") EncryptionScopeInner encryptionScope, @HeaderParam("Accept") String accept,
Context context);
@Headers({ "Content-Type: application/json" })
@Patch("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/encryptionScopes/{encryptionScopeName}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> patch(@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("accountName") String accountName,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("encryptionScopeName") String encryptionScopeName,
@BodyParam("application/json") EncryptionScopeInner encryptionScope, @HeaderParam("Accept") String accept,
Context context);
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/encryptionScopes/{encryptionScopeName}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> get(@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("accountName") String accountName,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@PathParam("encryptionScopeName") String encryptionScopeName, @HeaderParam("Accept") String accept,
Context context);
@Headers({ "Content-Type: application/json" })
@Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/encryptionScopes")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> list(@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("accountName") String accountName,
@QueryParam("api-version") String apiVersion, @PathParam("subscriptionId") String subscriptionId,
@QueryParam("$maxpagesize") Integer maxpagesize, @QueryParam("$filter") String filter,
@QueryParam("$include") ListEncryptionScopesInclude include, @HeaderParam("Accept") String accept,
Context context);
@Headers({ "Content-Type: application/json" })
@Get("{nextLink}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> listNext(
@PathParam(value = "nextLink", encoded = true) String nextLink, @HostParam("$host") String endpoint,
@HeaderParam("Accept") String accept, Context context);
}
/**
* Synchronously creates or updates an encryption scope under the specified storage account. If an encryption scope
* is already created and a subsequent request is issued with different properties, the encryption scope properties
* will be updated per the specified request.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @param encryptionScope Encryption scope properties to be used for the create or update.
* @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 Encryption Scope resource along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> putWithResponseAsync(String resourceGroupName, String accountName,
String encryptionScopeName, EncryptionScopeInner encryptionScope) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName 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 (encryptionScopeName == null) {
return Mono
.error(new IllegalArgumentException("Parameter encryptionScopeName is required and cannot be null."));
}
if (encryptionScope == null) {
return Mono
.error(new IllegalArgumentException("Parameter encryptionScope is required and cannot be null."));
} else {
encryptionScope.validate();
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.put(this.client.getEndpoint(), resourceGroupName, accountName,
this.client.getApiVersion(), this.client.getSubscriptionId(), encryptionScopeName, encryptionScope,
accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Synchronously creates or updates an encryption scope under the specified storage account. If an encryption scope
* is already created and a subsequent request is issued with different properties, the encryption scope properties
* will be updated per the specified request.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @param encryptionScope Encryption scope properties to be used for the create or update.
* @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 Encryption Scope resource along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> putWithResponseAsync(String resourceGroupName, String accountName,
String encryptionScopeName, EncryptionScopeInner encryptionScope, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName 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 (encryptionScopeName == null) {
return Mono
.error(new IllegalArgumentException("Parameter encryptionScopeName is required and cannot be null."));
}
if (encryptionScope == null) {
return Mono
.error(new IllegalArgumentException("Parameter encryptionScope is required and cannot be null."));
} else {
encryptionScope.validate();
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.put(this.client.getEndpoint(), resourceGroupName, accountName, this.client.getApiVersion(),
this.client.getSubscriptionId(), encryptionScopeName, encryptionScope, accept, context);
}
/**
* Synchronously creates or updates an encryption scope under the specified storage account. If an encryption scope
* is already created and a subsequent request is issued with different properties, the encryption scope properties
* will be updated per the specified request.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @param encryptionScope Encryption scope properties to be used for the create or update.
* @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 Encryption Scope resource on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono putAsync(String resourceGroupName, String accountName, String encryptionScopeName,
EncryptionScopeInner encryptionScope) {
return putWithResponseAsync(resourceGroupName, accountName, encryptionScopeName, encryptionScope)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Synchronously creates or updates an encryption scope under the specified storage account. If an encryption scope
* is already created and a subsequent request is issued with different properties, the encryption scope properties
* will be updated per the specified request.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @param encryptionScope Encryption scope properties to be used for the create or update.
* @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 Encryption Scope resource along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response putWithResponse(String resourceGroupName, String accountName,
String encryptionScopeName, EncryptionScopeInner encryptionScope, Context context) {
return putWithResponseAsync(resourceGroupName, accountName, encryptionScopeName, encryptionScope, context)
.block();
}
/**
* Synchronously creates or updates an encryption scope under the specified storage account. If an encryption scope
* is already created and a subsequent request is issued with different properties, the encryption scope properties
* will be updated per the specified request.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @param encryptionScope Encryption scope properties to be used for the create or update.
* @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 Encryption Scope resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public EncryptionScopeInner put(String resourceGroupName, String accountName, String encryptionScopeName,
EncryptionScopeInner encryptionScope) {
return putWithResponse(resourceGroupName, accountName, encryptionScopeName, encryptionScope, Context.NONE)
.getValue();
}
/**
* Update encryption scope properties as specified in the request body. Update fails if the specified encryption
* scope does not already exist.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @param encryptionScope Encryption scope properties to be used for the update.
* @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 Encryption Scope resource along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> patchWithResponseAsync(String resourceGroupName, String accountName,
String encryptionScopeName, EncryptionScopeInner encryptionScope) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName 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 (encryptionScopeName == null) {
return Mono
.error(new IllegalArgumentException("Parameter encryptionScopeName is required and cannot be null."));
}
if (encryptionScope == null) {
return Mono
.error(new IllegalArgumentException("Parameter encryptionScope is required and cannot be null."));
} else {
encryptionScope.validate();
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.patch(this.client.getEndpoint(), resourceGroupName, accountName,
this.client.getApiVersion(), this.client.getSubscriptionId(), encryptionScopeName, encryptionScope,
accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Update encryption scope properties as specified in the request body. Update fails if the specified encryption
* scope does not already exist.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @param encryptionScope Encryption scope properties to be used for the update.
* @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 Encryption Scope resource along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> patchWithResponseAsync(String resourceGroupName, String accountName,
String encryptionScopeName, EncryptionScopeInner encryptionScope, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName 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 (encryptionScopeName == null) {
return Mono
.error(new IllegalArgumentException("Parameter encryptionScopeName is required and cannot be null."));
}
if (encryptionScope == null) {
return Mono
.error(new IllegalArgumentException("Parameter encryptionScope is required and cannot be null."));
} else {
encryptionScope.validate();
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.patch(this.client.getEndpoint(), resourceGroupName, accountName, this.client.getApiVersion(),
this.client.getSubscriptionId(), encryptionScopeName, encryptionScope, accept, context);
}
/**
* Update encryption scope properties as specified in the request body. Update fails if the specified encryption
* scope does not already exist.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @param encryptionScope Encryption scope properties to be used for the update.
* @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 Encryption Scope resource on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono patchAsync(String resourceGroupName, String accountName,
String encryptionScopeName, EncryptionScopeInner encryptionScope) {
return patchWithResponseAsync(resourceGroupName, accountName, encryptionScopeName, encryptionScope)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Update encryption scope properties as specified in the request body. Update fails if the specified encryption
* scope does not already exist.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @param encryptionScope Encryption scope properties to be used for the update.
* @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 Encryption Scope resource along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response patchWithResponse(String resourceGroupName, String accountName,
String encryptionScopeName, EncryptionScopeInner encryptionScope, Context context) {
return patchWithResponseAsync(resourceGroupName, accountName, encryptionScopeName, encryptionScope, context)
.block();
}
/**
* Update encryption scope properties as specified in the request body. Update fails if the specified encryption
* scope does not already exist.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @param encryptionScope Encryption scope properties to be used for the update.
* @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 Encryption Scope resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public EncryptionScopeInner patch(String resourceGroupName, String accountName, String encryptionScopeName,
EncryptionScopeInner encryptionScope) {
return patchWithResponse(resourceGroupName, accountName, encryptionScopeName, encryptionScope, Context.NONE)
.getValue();
}
/**
* Returns the properties for the specified encryption scope.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @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 Encryption Scope resource along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getWithResponseAsync(String resourceGroupName, String accountName,
String encryptionScopeName) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName 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 (encryptionScopeName == null) {
return Mono
.error(new IllegalArgumentException("Parameter encryptionScopeName is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.get(this.client.getEndpoint(), resourceGroupName, accountName,
this.client.getApiVersion(), this.client.getSubscriptionId(), encryptionScopeName, accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Returns the properties for the specified encryption scope.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @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 Encryption Scope resource along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String resourceGroupName, String accountName,
String encryptionScopeName, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName 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 (encryptionScopeName == null) {
return Mono
.error(new IllegalArgumentException("Parameter encryptionScopeName is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.get(this.client.getEndpoint(), resourceGroupName, accountName, this.client.getApiVersion(),
this.client.getSubscriptionId(), encryptionScopeName, accept, context);
}
/**
* Returns the properties for the specified encryption scope.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @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 Encryption Scope resource on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getAsync(String resourceGroupName, String accountName,
String encryptionScopeName) {
return getWithResponseAsync(resourceGroupName, accountName, encryptionScopeName)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Returns the properties for the specified encryption scope.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @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 Encryption Scope resource along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getWithResponse(String resourceGroupName, String accountName,
String encryptionScopeName, Context context) {
return getWithResponseAsync(resourceGroupName, accountName, encryptionScopeName, context).block();
}
/**
* Returns the properties for the specified encryption scope.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param encryptionScopeName The name of the encryption scope within the specified storage account. Encryption
* scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only.
* Every dash (-) character must be immediately preceded and followed by a letter or number.
* @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 Encryption Scope resource.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public EncryptionScopeInner get(String resourceGroupName, String accountName, String encryptionScopeName) {
return getWithResponse(resourceGroupName, accountName, encryptionScopeName, Context.NONE).getValue();
}
/**
* Lists all the encryption scopes available under the specified storage account.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param maxpagesize Optional, specifies the maximum number of encryption scopes that will be included in the list
* response.
* @param filter Optional. When specified, only encryption scope names starting with the filter will be listed.
* @param include Optional, when specified, will list encryption scopes with the specific state. Defaults to All.
* @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 list of encryption scopes requested, and if paging is required, a URL to the next page of encryption
* scopes along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listSinglePageAsync(String resourceGroupName, String accountName,
Integer maxpagesize, String filter, ListEncryptionScopesInclude include) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName 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."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.list(this.client.getEndpoint(), resourceGroupName, accountName,
this.client.getApiVersion(), this.client.getSubscriptionId(), maxpagesize, filter, include, accept,
context))
.>map(res -> new PagedResponseBase<>(res.getRequest(),
res.getStatusCode(), res.getHeaders(), res.getValue().value(), res.getValue().nextLink(), null))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Lists all the encryption scopes available under the specified storage account.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param maxpagesize Optional, specifies the maximum number of encryption scopes that will be included in the list
* response.
* @param filter Optional. When specified, only encryption scope names starting with the filter will be listed.
* @param include Optional, when specified, will list encryption scopes with the specific state. Defaults to All.
* @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 list of encryption scopes requested, and if paging is required, a URL to the next page of encryption
* scopes along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listSinglePageAsync(String resourceGroupName, String accountName,
Integer maxpagesize, String filter, ListEncryptionScopesInclude include, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (accountName == null) {
return Mono.error(new IllegalArgumentException("Parameter accountName 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."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service
.list(this.client.getEndpoint(), resourceGroupName, accountName, this.client.getApiVersion(),
this.client.getSubscriptionId(), maxpagesize, filter, include, accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().nextLink(), null));
}
/**
* Lists all the encryption scopes available under the specified storage account.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param maxpagesize Optional, specifies the maximum number of encryption scopes that will be included in the list
* response.
* @param filter Optional. When specified, only encryption scope names starting with the filter will be listed.
* @param include Optional, when specified, will list encryption scopes with the specific state. Defaults to All.
* @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 list of encryption scopes requested, and if paging is required, a URL to the next page of encryption
* scopes as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux listAsync(String resourceGroupName, String accountName, Integer maxpagesize,
String filter, ListEncryptionScopesInclude include) {
return new PagedFlux<>(() -> listSinglePageAsync(resourceGroupName, accountName, maxpagesize, filter, include),
nextLink -> listNextSinglePageAsync(nextLink));
}
/**
* Lists all the encryption scopes available under the specified storage account.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @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 list of encryption scopes requested, and if paging is required, a URL to the next page of encryption
* scopes as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedFlux listAsync(String resourceGroupName, String accountName) {
final Integer maxpagesize = null;
final String filter = null;
final ListEncryptionScopesInclude include = null;
return new PagedFlux<>(() -> listSinglePageAsync(resourceGroupName, accountName, maxpagesize, filter, include),
nextLink -> listNextSinglePageAsync(nextLink));
}
/**
* Lists all the encryption scopes available under the specified storage account.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param maxpagesize Optional, specifies the maximum number of encryption scopes that will be included in the list
* response.
* @param filter Optional. When specified, only encryption scope names starting with the filter will be listed.
* @param include Optional, when specified, will list encryption scopes with the specific state. Defaults to All.
* @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 list of encryption scopes requested, and if paging is required, a URL to the next page of encryption
* scopes as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
private PagedFlux listAsync(String resourceGroupName, String accountName, Integer maxpagesize,
String filter, ListEncryptionScopesInclude include, Context context) {
return new PagedFlux<>(
() -> listSinglePageAsync(resourceGroupName, accountName, maxpagesize, filter, include, context),
nextLink -> listNextSinglePageAsync(nextLink, context));
}
/**
* Lists all the encryption scopes available under the specified storage account.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @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 list of encryption scopes requested, and if paging is required, a URL to the next page of encryption
* scopes as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable list(String resourceGroupName, String accountName) {
final Integer maxpagesize = null;
final String filter = null;
final ListEncryptionScopesInclude include = null;
return new PagedIterable<>(listAsync(resourceGroupName, accountName, maxpagesize, filter, include));
}
/**
* Lists all the encryption scopes available under the specified storage account.
*
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case
* insensitive.
* @param accountName The name of the storage account within the specified resource group. Storage account names
* must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @param maxpagesize Optional, specifies the maximum number of encryption scopes that will be included in the list
* response.
* @param filter Optional. When specified, only encryption scope names starting with the filter will be listed.
* @param include Optional, when specified, will list encryption scopes with the specific state. Defaults to All.
* @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 list of encryption scopes requested, and if paging is required, a URL to the next page of encryption
* scopes as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
public PagedIterable list(String resourceGroupName, String accountName, Integer maxpagesize,
String filter, ListEncryptionScopesInclude include, Context context) {
return new PagedIterable<>(listAsync(resourceGroupName, accountName, maxpagesize, filter, include, context));
}
/**
* Get the next page of items.
*
* @param nextLink The URL to get the next list of items.
* @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 list of encryption scopes requested, and if paging is required, a URL to the next page of encryption
* scopes along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listNextSinglePageAsync(String nextLink) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil.withContext(context -> service.listNext(nextLink, this.client.getEndpoint(), accept, context))
.>map(res -> new PagedResponseBase<>(res.getRequest(),
res.getStatusCode(), res.getHeaders(), res.getValue().value(), res.getValue().nextLink(), null))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Get the next page of items.
*
* @param nextLink The URL to get the next list of items.
* @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 list of encryption scopes requested, and if paging is required, a URL to the next page of encryption
* scopes along with {@link PagedResponse} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> listNextSinglePageAsync(String nextLink, Context context) {
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.listNext(nextLink, this.client.getEndpoint(), accept, context)
.map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
res.getValue().value(), res.getValue().nextLink(), null));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy