All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.advisor.implementation.RecommendationMetadatasImpl Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for Advisor Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. REST APIs for Azure Advisor. Package tag package-2020-01.

There is a newer version: 1.0.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.advisor.implementation;

import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.SimpleResponse;
import com.azure.core.util.Context;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.advisor.fluent.RecommendationMetadatasClient;
import com.azure.resourcemanager.advisor.fluent.models.MetadataEntityInner;
import com.azure.resourcemanager.advisor.models.MetadataEntity;
import com.azure.resourcemanager.advisor.models.RecommendationMetadatas;

public final class RecommendationMetadatasImpl implements RecommendationMetadatas {
    private static final ClientLogger LOGGER = new ClientLogger(RecommendationMetadatasImpl.class);

    private final RecommendationMetadatasClient innerClient;

    private final com.azure.resourcemanager.advisor.AdvisorManager serviceManager;

    public RecommendationMetadatasImpl(RecommendationMetadatasClient innerClient,
        com.azure.resourcemanager.advisor.AdvisorManager serviceManager) {
        this.innerClient = innerClient;
        this.serviceManager = serviceManager;
    }

    public Response getWithResponse(String name, Context context) {
        Response inner = this.serviceClient().getWithResponse(name, context);
        if (inner != null) {
            return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
                new MetadataEntityImpl(inner.getValue(), this.manager()));
        } else {
            return null;
        }
    }

    public MetadataEntity get(String name) {
        MetadataEntityInner inner = this.serviceClient().get(name);
        if (inner != null) {
            return new MetadataEntityImpl(inner, this.manager());
        } else {
            return null;
        }
    }

    public PagedIterable list() {
        PagedIterable inner = this.serviceClient().list();
        return ResourceManagerUtils.mapPage(inner, inner1 -> new MetadataEntityImpl(inner1, this.manager()));
    }

    public PagedIterable list(Context context) {
        PagedIterable inner = this.serviceClient().list(context);
        return ResourceManagerUtils.mapPage(inner, inner1 -> new MetadataEntityImpl(inner1, this.manager()));
    }

    private RecommendationMetadatasClient serviceClient() {
        return this.innerClient;
    }

    private com.azure.resourcemanager.advisor.AdvisorManager manager() {
        return this.serviceManager;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy