com.azure.resourcemanager.recoveryservicesbackup.implementation.DeletedProtectionContainersImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
This package contains Microsoft Azure SDK for RecoveryServicesBackup Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Open API 2.0 Specs for Azure RecoveryServices Backup service. Package tag package-2024-04.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.recoveryservicesbackup.implementation;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.util.Context;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.recoveryservicesbackup.fluent.DeletedProtectionContainersClient;
import com.azure.resourcemanager.recoveryservicesbackup.fluent.models.ProtectionContainerResourceInner;
import com.azure.resourcemanager.recoveryservicesbackup.models.DeletedProtectionContainers;
import com.azure.resourcemanager.recoveryservicesbackup.models.ProtectionContainerResource;
public final class DeletedProtectionContainersImpl implements DeletedProtectionContainers {
private static final ClientLogger LOGGER = new ClientLogger(DeletedProtectionContainersImpl.class);
private final DeletedProtectionContainersClient innerClient;
private final com.azure.resourcemanager.recoveryservicesbackup.RecoveryServicesBackupManager serviceManager;
public DeletedProtectionContainersImpl(DeletedProtectionContainersClient innerClient,
com.azure.resourcemanager.recoveryservicesbackup.RecoveryServicesBackupManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public PagedIterable list(String resourceGroupName, String vaultName) {
PagedIterable inner = this.serviceClient().list(resourceGroupName, vaultName);
return ResourceManagerUtils.mapPage(inner,
inner1 -> new ProtectionContainerResourceImpl(inner1, this.manager()));
}
public PagedIterable list(String resourceGroupName, String vaultName, String filter,
Context context) {
PagedIterable inner
= this.serviceClient().list(resourceGroupName, vaultName, filter, context);
return ResourceManagerUtils.mapPage(inner,
inner1 -> new ProtectionContainerResourceImpl(inner1, this.manager()));
}
private DeletedProtectionContainersClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.recoveryservicesbackup.RecoveryServicesBackupManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy