com.azure.resourcemanager.delegatednetwork.implementation.OperationsImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-delegatednetwork Show documentation
Show all versions of azure-resourcemanager-delegatednetwork Show documentation
This package contains Microsoft Azure SDK for DelegatedNetwork Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. DNC web api provides way to create, get and delete dnc controller. Package tag package-2021-03-15.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.delegatednetwork.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.delegatednetwork.fluent.OperationsClient;
import com.azure.resourcemanager.delegatednetwork.fluent.models.OperationInner;
import com.azure.resourcemanager.delegatednetwork.models.Operation;
import com.azure.resourcemanager.delegatednetwork.models.Operations;
import com.fasterxml.jackson.annotation.JsonIgnore;
public final class OperationsImpl implements Operations {
@JsonIgnore private final ClientLogger logger = new ClientLogger(OperationsImpl.class);
private final OperationsClient innerClient;
private final com.azure.resourcemanager.delegatednetwork.DelegatedNetworkManager serviceManager;
public OperationsImpl(
OperationsClient innerClient,
com.azure.resourcemanager.delegatednetwork.DelegatedNetworkManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public PagedIterable list() {
PagedIterable inner = this.serviceClient().list();
return Utils.mapPage(inner, inner1 -> new OperationImpl(inner1, this.manager()));
}
public PagedIterable list(Context context) {
PagedIterable inner = this.serviceClient().list(context);
return Utils.mapPage(inner, inner1 -> new OperationImpl(inner1, this.manager()));
}
private OperationsClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.delegatednetwork.DelegatedNetworkManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy